Gravity mega stun fix

This commit is contained in:
Bone White
2014-09-13 08:48:17 +01:00
parent 205a30da7b
commit 6f40f1ed3d
+11 -4
View File
@@ -400,12 +400,19 @@
return
if((istype(M,/mob/living/carbon/human/)) && (M.m_intent == "run")).
M.AdjustStunned(5)
M.AdjustWeakened(5)
//M.AdjustStunned(5)
//M.AdjustWeakened(5)
if(M.stunned <= 5) M.stunned = 5
if(M.weakened <= 5) M.weakened = 5
else if (istype(M,/mob/living/carbon/human/))
M.AdjustStunned(2)
M.AdjustWeakened(2)
//M.AdjustStunned(2)
//M.AdjustWeakened(2)
if(M.stunned <= 2) M.stunned = 2
if(M.weakened <= 2) M.weakened = 2
M << "Gravity!"