mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-27 07:08:00 +01:00
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
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
SIGNAL_HANDLER
|
||||
|
||||
if(can_climb(source, user))
|
||||
examine_texts += "<span class='notice'>[source] looks climbable</span>"
|
||||
examine_texts += "<span class='notice'>[source] looks climbable.</span>"
|
||||
|
||||
/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("<span class='warning'>[structure_climber] is knocked off [climbed_thing].</span>", "<span class='warning'>You're knocked off [climbed_thing]!</span>", "<span class='warning'>You see [structure_climber] get knocked off [climbed_thing].</span>")
|
||||
structure_climber.visible_message("<span class='warning'>[structure_climber] is knocked off [climbed_thing].</span>", "<span class='warning'>You're knocked off [climbed_thing]!</span>", "<span class='hear'>You hear a cry from [structure_climber], followed by a slam.</span>")
|
||||
|
||||
|
||||
/datum/element/climbable/proc/climb_structure(atom/climbed_thing, mob/living/user)
|
||||
|
||||
Reference in New Issue
Block a user