From 04236edf1389b0d20fd8d3fb885cbe8c374d93c9 Mon Sep 17 00:00:00 2001 From: ppi13 Date: Mon, 20 Jul 2020 19:30:41 +0200 Subject: [PATCH 1/3] Removes GPS from tendrils --- code/game/objects/structures/lavaland/necropolis_tendril.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/lavaland/necropolis_tendril.dm b/code/game/objects/structures/lavaland/necropolis_tendril.dm index f9717956bb0..1a891aa634b 100644 --- a/code/game/objects/structures/lavaland/necropolis_tendril.dm +++ b/code/game/objects/structures/lavaland/necropolis_tendril.dm @@ -29,7 +29,7 @@ GLOBAL_LIST_INIT(tendrils, list()) /obj/structure/spawner/lavaland/Initialize(mapload) . = ..() emitted_light = new(loc) - gps = new /obj/item/gps/internal(src) + //gps = new /obj/item/gps/internal(src) GLOB.tendrils += src return INITIALIZE_HINT_LATELOAD From 05e70b70053fb007f3af4dfbd5309f3e204d5aba Mon Sep 17 00:00:00 2001 From: ppi13 Date: Mon, 20 Jul 2020 19:52:50 +0200 Subject: [PATCH 2/3] Deletes the line instead of commenting it out --- code/game/objects/structures/lavaland/necropolis_tendril.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/game/objects/structures/lavaland/necropolis_tendril.dm b/code/game/objects/structures/lavaland/necropolis_tendril.dm index 1a891aa634b..97181b1c3fb 100644 --- a/code/game/objects/structures/lavaland/necropolis_tendril.dm +++ b/code/game/objects/structures/lavaland/necropolis_tendril.dm @@ -29,7 +29,6 @@ GLOBAL_LIST_INIT(tendrils, list()) /obj/structure/spawner/lavaland/Initialize(mapload) . = ..() emitted_light = new(loc) - //gps = new /obj/item/gps/internal(src) GLOB.tendrils += src return INITIALIZE_HINT_LATELOAD From 96fddc3f91acd7b54a66f836d04a3e57f13d84b9 Mon Sep 17 00:00:00 2001 From: ppi13 Date: Mon, 20 Jul 2020 20:09:12 +0200 Subject: [PATCH 3/3] Remove gps references --- code/game/objects/structures/lavaland/necropolis_tendril.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/game/objects/structures/lavaland/necropolis_tendril.dm b/code/game/objects/structures/lavaland/necropolis_tendril.dm index 97181b1c3fb..13c0ce77c0f 100644 --- a/code/game/objects/structures/lavaland/necropolis_tendril.dm +++ b/code/game/objects/structures/lavaland/necropolis_tendril.dm @@ -15,7 +15,6 @@ anchored = TRUE resistance_flags = FIRE_PROOF | LAVA_PROOF - var/gps = null var/obj/effect/light_emitter/tendril/emitted_light /obj/structure/spawner/lavaland/goliath @@ -58,7 +57,6 @@ GLOBAL_LIST_INIT(tendrils, list()) SSmedals.SetScore(TENDRIL_CLEAR_SCORE, L.client, 1) GLOB.tendrils -= src QDEL_NULL(emitted_light) - QDEL_NULL(gps) return ..() /obj/effect/light_emitter/tendril