[MIRROR] Removes the devils var (#5819)

* Merge pull request #36175 from tgstation/Cyberboss-patch-1

Removes the devils var

* Removes the devils var
This commit is contained in:
CitadelStationBot
2018-03-05 12:34:28 -06:00
committed by Poojawa
parent 6134f79a26
commit 5374393635

View File

@@ -36,8 +36,8 @@
var/atom/summoned_object = new summoned_object_type(spawn_place)
for(var/varName in newVars)
if(varName in summoned_object.vars)
summoned_object.vars[varName] = newVars[varName]
if(varName in newVars)
summoned_object.vv_edit_var(varName, newVars[varName])
summoned_object.admin_spawned = TRUE
if(summon_lifespan)
QDEL_IN(summoned_object, summon_lifespan)