Gets Rid Of An Errant Space From The Baton Knockdown Message (#62865)

This commit is contained in:
Jackraxxus
2021-11-18 06:57:47 +11:00
committed by GitHub
parent 64be1da54a
commit ddfdfed112
+1 -1
View File
@@ -521,7 +521,7 @@
/obj/item/melee/baton/security/proc/apply_stun_effect_end(mob/living/target)
var/trait_check = HAS_TRAIT(target, TRAIT_STUNRESISTANCE) //var since we check it in out to_chat as well as determine stun duration
if(!target.IsKnockdown())
to_chat(target, span_warning("Your muscles seize, making you collapse [trait_check ? ", but your body quickly recovers..." : "!"]"))
to_chat(target, span_warning("Your muscles seize, making you collapse[trait_check ? ", but your body quickly recovers..." : "!"]"))
target.Knockdown(knockdown_time * (trait_check ? 0.1 : 1))