From 4d7255c709726f21d3ab2cd44f58b982344ac905 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Wed, 4 Dec 2024 22:45:00 +0100 Subject: [PATCH] . --- code/datums/components/resize_guard.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/resize_guard.dm b/code/datums/components/resize_guard.dm index bc75a9438cf..ca8adfab43d 100644 --- a/code/datums/components/resize_guard.dm +++ b/code/datums/components/resize_guard.dm @@ -13,7 +13,7 @@ /datum/component/resize_guard/proc/check_resize() var/area/A = get_area(parent) - if(!A?.flag_check(AREA_ALLOW_LARGE_SIZE)) + if(A?.flag_check(AREA_ALLOW_LARGE_SIZE)) return var/mob/living/L = parent L.resize(L.size_multiplier, ignore_prefs = TRUE)