From 8f3f54bc22b9efce0359b4aba1c38acb32a6f20d Mon Sep 17 00:00:00 2001 From: FlufflesTheDog Date: Sun, 8 Dec 2024 07:50:03 -0700 Subject: [PATCH] Fix anomaly shifter deleting global themes (#88402) ## About The Pull Request Makes the dimensional shifter relic not delete global data. ## Why It's Good For The Game We need those. Please don't delete those. ## Changelog :cl: fix: Dimensional shifter relics work more reliably. /:cl: --- code/modules/research/experimentor.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/research/experimentor.dm b/code/modules/research/experimentor.dm index c78ca6601d4..75ad0146fd4 100644 --- a/code/modules/research/experimentor.dm +++ b/code/modules/research/experimentor.dm @@ -828,7 +828,6 @@ var/datum/dimension_theme/shifter = SSmaterials.dimensional_themes[new_theme_path] for(var/turf/shiftee in range(1, user)) shifter.apply_theme(shiftee, show_effect = TRUE) - qdel(shifter) // prevent *total* spam conversion min_cooldown += 2 SECONDS max_cooldown += 2 SECONDS