diff --git a/GainStation13/code/datums/components/fattening_door.dm b/GainStation13/code/datums/components/fattening_door.dm index 940028a4..e2c7f9af 100644 --- a/GainStation13/code/datums/components/fattening_door.dm +++ b/GainStation13/code/datums/components/fattening_door.dm @@ -17,8 +17,8 @@ var/vis_message_others = "" // determine if mob should get stuck and be fattened if(M.fatness >= FATNESS_LEVEL_FAT) - fatten = TRUE if(!M.AmountFatStunned()) + fatten = TRUE stuck_delay = 5 vis_message_self = "You feel your sides briefly brush against the doorway!" vis_message_others = "[M]'s sides briefly brush against the doorway." @@ -41,4 +41,4 @@ // Apply the fatstun if(fatten) M.visible_message("[vis_message_others]", "[vis_message_self]") - M.FatStun(stuck_delay, fatAmount = fat_to_add) + M.FatStun(stuck_delay, fatAmount = fat_to_add) // DOOR STUCK