From 2b99671d5e67e7da8a290b5566d4acd9b0a3f563 Mon Sep 17 00:00:00 2001 From: GremlingSS Date: Sat, 30 Dec 2023 12:10:22 +0000 Subject: [PATCH] Removes whitespace from appearing when going across it while stunned. --- GainStation13/code/datums/components/fattening_door.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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