From af8fed8be7784c43bbf34ae0e7586eaa9e30e201 Mon Sep 17 00:00:00 2001 From: vincibrv Date: Mon, 29 Jul 2024 18:20:29 +0200 Subject: [PATCH] xenos intentionaly take more damage as they have more health and welp they kinda do not care about that 15 --- code/game/objects/structures/barricade/handrail.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/barricade/handrail.dm b/code/game/objects/structures/barricade/handrail.dm index e0f085c064db..983dbd82706d 100644 --- a/code/game/objects/structures/barricade/handrail.dm +++ b/code/game/objects/structures/barricade/handrail.dm @@ -58,7 +58,7 @@ if(prob(25)) if(ishuman(climber)) var/mob/living/carbon/human/human = climber - human.apply_damage(15,BRUTE,no_limb_loss = TRUE) + human.apply_damage(5,BRUTE,no_limb_loss = TRUE) else climber.apply_damage(15,BRUTE) climber.visible_message(SPAN_WARNING("You hit yourself as you vault over the [src]"))