From a04c622f90ffac3f6cd76934599e58fa8cc49a7a Mon Sep 17 00:00:00 2001 From: Molti <108117184+Moltijoe@users.noreply.github.com> Date: Tue, 27 Jun 2023 19:08:43 -0500 Subject: [PATCH] Update battleroyale.dm (#19364) --- yogstation/code/game/gamemodes/battle_royale/battleroyale.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yogstation/code/game/gamemodes/battle_royale/battleroyale.dm b/yogstation/code/game/gamemodes/battle_royale/battleroyale.dm index b88bc350d4b2..46dfacf385a6 100644 --- a/yogstation/code/game/gamemodes/battle_royale/battleroyale.dm +++ b/yogstation/code/game/gamemodes/battle_royale/battleroyale.dm @@ -179,7 +179,7 @@ GLOBAL_VAR(stormdamage) /datum/game_mode/fortnite/proc/delete_armoury() var/area/ai_monitored/security/armory/A = locate(/area/ai_monitored/security/armory) in GLOB.areas for(var/obj/item/thing in A) - if(thing.anchored || !thing.force)//only target something that is possibly a weapon + if(thing.anchored)//only target something that is possibly a weapon continue qdel(thing)