From a83f2abdc116dfb0cc1f36e2e9e0d4924db4bdf5 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Fri, 20 Nov 2020 09:41:22 +0100 Subject: [PATCH] You can't defy lack of gravity through the power of love. (#55037) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit About The Pull Request Title. Law of conservation of energy, not handholding. Why It's Good For The Game This will close #53192. Changelog 🆑 fix: You can't defy lack of gravity through the power of love. /🆑 --- code/game/atoms_movable.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index ff14734ffb3..4f25ded8428 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -617,7 +617,7 @@ if(has_gravity(src)) return TRUE - if(pulledby) + if(pulledby && (pulledby.pulledby != src || moving_from_pull)) return TRUE if(throwing)