From 84d63ccf714c56cedf95b327243edd356f45fd8b Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Mon, 8 Feb 2021 14:55:33 -0600 Subject: [PATCH] Adds a punctuation and removes an egregious blind message in climbable element (#56744) Adds a punctuation on the examine message for climbable things Removes a really bad blind message --- code/datums/elements/climbable.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/elements/climbable.dm b/code/datums/elements/climbable.dm index eb86b40f47f..0c00018d746 100644 --- a/code/datums/elements/climbable.dm +++ b/code/datums/elements/climbable.dm @@ -31,7 +31,7 @@ SIGNAL_HANDLER if(can_climb(source, user)) - examine_texts += "[source] looks climbable" + examine_texts += "[source] looks climbable." /datum/element/climbable/proc/can_climb(atom/source, mob/user) return TRUE @@ -46,7 +46,7 @@ user.changeNext_move(CLICK_CD_MELEE) user.do_attack_animation(climbed_thing) structure_climber.Paralyze(40) - structure_climber.visible_message("[structure_climber] is knocked off [climbed_thing].", "You're knocked off [climbed_thing]!", "You see [structure_climber] get knocked off [climbed_thing].") + structure_climber.visible_message("[structure_climber] is knocked off [climbed_thing].", "You're knocked off [climbed_thing]!", "You hear a cry from [structure_climber], followed by a slam.") /datum/element/climbable/proc/climb_structure(atom/climbed_thing, mob/living/user)