From 2d7b76d1561e9d3f2c15cd9ac56ecbbfdf759469 Mon Sep 17 00:00:00 2001 From: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Date: Mon, 25 Apr 2022 11:53:36 -0500 Subject: [PATCH] portal runtime fix (#17664) --- code/game/objects/effects/portals.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/effects/portals.dm b/code/game/objects/effects/portals.dm index 9d2cc38ee8a..667e0e66bfc 100644 --- a/code/game/objects/effects/portals.dm +++ b/code/game/objects/effects/portals.dm @@ -27,6 +27,8 @@ target = _target if(creation_object) creation_obj_data = list(creation_object.UID(), "[creation_object.name]") // Store the name incase the object is deleted. + else + creation_obj_data = list(null, null) creation_mob_ckey = creation_mob?.ckey if(lifespan > 0)