From e6dda96934b75c5aa1fbcd3e0a98bdbc6d5dac5d Mon Sep 17 00:00:00 2001 From: ESwordTheCat Date: Mon, 7 Apr 2014 09:59:47 +0800 Subject: [PATCH] Null the loc. --- code/__HELPERS/experimental.dm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/code/__HELPERS/experimental.dm b/code/__HELPERS/experimental.dm index 872b964d7dd..b6eeeb28824 100644 --- a/code/__HELPERS/experimental.dm +++ b/code/__HELPERS/experimental.dm @@ -122,8 +122,7 @@ var/list/grillePool shardPool = new /list() var /obj/item/weapon/shard/Shard = A - - Shard.loc = initial(Shard.loc) + Shard.loc = null shardPool = shardPool + Shard if (/obj/item/weapon/shard/plasma) @@ -134,8 +133,7 @@ var/list/grillePool plasmaShardPool = new /list() var /obj/item/weapon/shard/plasma/Plasma = A - - Plasma.loc = initial(Plasma.loc) + Plasma.loc = null plasmaShardPool = plasmaShardPool + Plasma if (/obj/structure/grille) @@ -146,8 +144,8 @@ var/list/grillePool grillePool = new /list() var /obj/structure/grille/Grille = A + Grille.loc = null - Grille.loc = initial(Grille.loc) Grille.icon_state = initial(Grille.icon_state) Grille.density = initial(Grille.density) Grille.destroyed = initial(Grille.destroyed)