From b0cee498c477c7c8d7d9af2e00edac8da2c1aacc Mon Sep 17 00:00:00 2001 From: coiax Date: Wed, 18 Jan 2017 17:13:01 +0000 Subject: [PATCH] Ladders give the user a message if they're broken (#23063) Now it's clear when a ladder is just set up incorrectly. Even though they're super old fashioned and only used for admin memes and whatnot. --- code/game/objects/structures/ladders.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/structures/ladders.dm b/code/game/objects/structures/ladders.dm index 8c23c5046cc..a5643aee093 100644 --- a/code/game/objects/structures/ladders.dm +++ b/code/game/objects/structures/ladders.dm @@ -66,6 +66,8 @@ go_up(user,is_ghost) else if(down) go_down(user,is_ghost) + else + user << "[src] doesn't seem to lead anywhere!" if(!is_ghost) add_fingerprint(user)