more door

This commit is contained in:
Metis
2024-05-26 18:29:42 -04:00
parent 29fb631394
commit 77ef9cfb53
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -178,9 +178,9 @@
//GS13 EDIT
var/mob/living/carbon/human/bump_mob = M
if(check_fatness && istype(bump_mob))
if(check_below && (bump_mob.fatness >= fatness_to_check))
if(check_fatness_below && (bump_mob.fatness >= fatness_to_check))
return FALSE
if(!check_below && (bump_mob.fatness < fatness_to_check))
if(!check_fatness_below && (bump_mob.fatness < fatness_to_check))
return FALSE
return ..()