From 1b93c850ca2fdf3bc2bca9d24c30ce1b3fc634a0 Mon Sep 17 00:00:00 2001 From: Geeves <22774890+Geevies@users.noreply.github.com> Date: Wed, 19 Aug 2026 18:04:41 +0000 Subject: [PATCH] Hivebot Beacon Heisenbug Fix (#23082) fixes a heisenbug related to hivebot beacons and their smoke spawning in --- .../mob/living/simple_animal/hostile/hivebots/hivebot_beacon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot_beacon.dm b/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot_beacon.dm index 0c019e77380..fb628767649 100644 --- a/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot_beacon.dm +++ b/code/modules/mob/living/simple_animal/hostile/hivebots/hivebot_beacon.dm @@ -113,7 +113,7 @@ total_hivebots_to_spawn = total_hivebots_to_spawn + (length(GLOB.player_list) * total_hivebots_to_spawn_to_playing_players_scaling_factor) maximum_linked_and_alive_hivebots = maximum_linked_and_alive_hivebots + (length(GLOB.player_list) * maximum_linked_and_alive_hivebots_to_playing_players_scaling_factor) - if(!mapload) + if(!mapload && !GLOB.running_create_and_destroy) var/datum/effect/effect/system/smoke_spread/S = new /datum/effect/effect/system/smoke_spread() S.set_up(5, 0, src.loc) S.start()