From b3a5fd773c877ccc1b4b75891dded77445e27b54 Mon Sep 17 00:00:00 2001 From: Venuska1117 <89580971+Venuska1117@users.noreply.github.com> Date: Mon, 22 May 2023 22:06:30 +0200 Subject: [PATCH] Fixes (Oversight?) with fungus spawner from #16877 (#21057) * Changed Fungus - Now fungus dont spawn wall if roll fails. * Apply suggestions from code review Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> --------- Co-authored-by: Farie82 Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> --- code/game/objects/effects/spawners/random_spawners.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/effects/spawners/random_spawners.dm b/code/game/objects/effects/spawners/random_spawners.dm index 947c67c7801..797f9a2f9d5 100644 --- a/code/game/objects/effects/spawners/random_spawners.dm +++ b/code/game/objects/effects/spawners/random_spawners.dm @@ -140,16 +140,16 @@ icon_state = "fungus" color = "#D5820B" result = list( - /turf/simulated/wall = 7, - /obj/effect/decal/cleanable/fungus = 1) + /datum/nothing = 7, + /obj/effect/decal/cleanable/fungus = 1) /obj/effect/spawner/random_spawners/fungus_probably name = "fungus probably" icon_state = "fungus" color = "#D5820B" result = list( - /turf/simulated/wall = 1, - /obj/effect/decal/cleanable/fungus = 7) + /datum/nothing = 1, + /obj/effect/decal/cleanable/fungus = 7)