From bb10f6afb5aeb15fa90736d696ab87f5a28bd666 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 14 Jun 2016 22:01:00 -0400 Subject: [PATCH] Using a dehydrated carp no longer strips the neutral faction from the owner. --- code/game/objects/items/dehy_carp.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/dehy_carp.dm b/code/game/objects/items/dehy_carp.dm index 48cf67cc93b..40da8292a12 100644 --- a/code/game/objects/items/dehy_carp.dm +++ b/code/game/objects/items/dehy_carp.dm @@ -40,7 +40,7 @@ var/mob/living/M = new mobtype(get_turf(src)) //Make carp non-hostile to user, and their allies if(owner) - var/list/factions = owner.faction + var/list/factions = owner.faction.Copy() for(var/F in factions) if(F == "neutral") factions -= F