From ad148b4acb9c02c76105e35a65405a630fbcb29d Mon Sep 17 00:00:00 2001 From: Skies-Of-Blue Date: Tue, 5 Mar 2024 02:12:34 -0800 Subject: [PATCH] lag has ruined me one too many times --- code/modules/mob/living/living.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 5983d8100112..b240836b55e7 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -93,6 +93,10 @@ //Called when we bump onto a mob /mob/living/proc/MobBump(mob/M) + //No bumping/swapping/pushing others if you are on walk intent + if(m_intent == MOVE_INTENT_WALK) + return TRUE + //Even if we don't push/swap places, we "touched" them, so spread fire spreadFire(M)