From 173babd8a81dee8c3f6f29ff6fd0efb8cecfe794 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 26 Jan 2024 05:09:17 +0100 Subject: [PATCH] [MIRROR] Removes infinite sources of plasma from icebox (#26248) * Removes infinite sources of plasma from icebox (#81091) ## About The Pull Request The gibotonite that arcane had setup to spawn on icebox was uh, the wrong kind, it was the cursed SNOWDIN gibonite, which is made to live in a plasma environment. Rookie error really should have remembered that ice/icemoon exists this is a GREAT codebase Speaking of, I've noticed that gibonite is the only ore that spawns in an actual mineral wall here (IE the blue rock walls) so you can really trivially avoid it. that feels wrong ## Changelog :cl: fix: Icebox will no longer spawn a fuck ton of plasma after gibonite blows. YW besties /:cl: * Removes infinite sources of plasma from icebox --------- Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> --- code/datums/mapgen/Cavegens/IcemoonCaves.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/mapgen/Cavegens/IcemoonCaves.dm b/code/datums/mapgen/Cavegens/IcemoonCaves.dm index 168b62a25e4..afabc7ffd43 100644 --- a/code/datums/mapgen/Cavegens/IcemoonCaves.dm +++ b/code/datums/mapgen/Cavegens/IcemoonCaves.dm @@ -2,7 +2,7 @@ weighted_open_turf_types = list(/turf/open/misc/asteroid/snow/icemoon = 19, /turf/open/misc/ice/icemoon = 1) weighted_closed_turf_types = list( /turf/closed/mineral/snowmountain/icemoon = 100, - /turf/closed/mineral/gibtonite/ice = 4, + /turf/closed/mineral/gibtonite/ice/icemoon = 4, )