From b490873f2ab78c57ccbce61b511950811e171e94 Mon Sep 17 00:00:00 2001 From: lolman360 <22850904+lolman360@users.noreply.github.com> Date: Sat, 21 Dec 2019 13:13:37 +1100 Subject: [PATCH] ff --- code/modules/mob/living/inhand_holder.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/inhand_holder.dm b/code/modules/mob/living/inhand_holder.dm index d437e0160d..e57e5e2936 100644 --- a/code/modules/mob/living/inhand_holder.dm +++ b/code/modules/mob/living/inhand_holder.dm @@ -114,7 +114,7 @@ var/turf/T = get_turf(loc) while(location != T) location = location.loc - if(ismob(location))) + if(ismob(location)) return location.loc.assume_air(env) return loc.assume_air(env) @@ -125,6 +125,6 @@ var/turf/T = get_turf(loc) while(location != T) location = location.loc - if(ismob(location))) + if(ismob(location)) return location.loc.remove_air(amount) return loc.remove_air(amount)