From 30cae88d192e899d699fd443d35cdeec80225bff Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Wed, 7 Jun 2023 18:00:13 +0200 Subject: [PATCH] Fixes oversight of picnic blankets NOT being anchored * I assumed all obj/structure start as anchored * I assumed wrong. * I need to stop assuming things * Anyway, bugfix for informal bugreport "throwing items at blankets causes them to get dislodged weirdly." --- code/game/objects/items/weapons/picnic_blankets.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/weapons/picnic_blankets.dm b/code/game/objects/items/weapons/picnic_blankets.dm index a5da986015..ab76b8efa7 100644 --- a/code/game/objects/items/weapons/picnic_blankets.dm +++ b/code/game/objects/items/weapons/picnic_blankets.dm @@ -33,6 +33,7 @@ var/blanket_type = CENTER layer = HIDING_LAYER - 0.01 //Stuff shouldn't be able to hide under the blanket on the ground var/list/attached_blankets = list() + anchored = TRUE /obj/structure/picnic_blanket_deployed/verb/fold_up() set name = "Fold up"