mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 03:57:13 +01:00
Gravity mega stun fix
This commit is contained in:
+11
-4
@@ -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!"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user