From 079360beebe88816111f8fd1e2d09dc017c5fa47 Mon Sep 17 00:00:00 2001
From: kevinz000 <2003111+kevinz000@users.noreply.github.com>
Date: Thu, 14 Feb 2019 23:59:40 -0800
Subject: [PATCH] Update carbon.dm
---
modular_citadel/code/modules/mob/living/carbon/carbon.dm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modular_citadel/code/modules/mob/living/carbon/carbon.dm b/modular_citadel/code/modules/mob/living/carbon/carbon.dm
index 8d6b4576c9..1271c33946 100644
--- a/modular_citadel/code/modules/mob/living/carbon/carbon.dm
+++ b/modular_citadel/code/modules/mob/living/carbon/carbon.dm
@@ -29,7 +29,7 @@
for(var/obj/screen/combattoggle/selector in hud_used.static_inventory)
selector.rebasetointerbay(src)
if(world.time >= combatmessagecooldown && combatmode)
- visible_message("[src] [resting ? "tenses up" : "drops into a combative stance"].")
+ visible_message("[src] [resting ? "tenses up" : (prob(50)? "drops into a combative stance" : (prob(99)? "poses aggressively" : "asserts dominance with their pose"))].")
combatmessagecooldown = 10 SECONDS + world.time //This is set 100% of the time to make sure squeezing regen out of process cycles doesn't result in the combat mode message getting spammed
SEND_SIGNAL(src, COMSIG_COMBAT_TOGGLED, src, combatmode)
return TRUE