Maintenance drone spawners should reference current map instead of Aurora.

This commit is contained in:
mikomyazaki
2022-02-20 17:29:30 +00:00
parent d19b2c563b
commit adbdb0b1a1
5 changed files with 13 additions and 6 deletions
@@ -201,11 +201,12 @@
law_type = /datum/ai_laws/matriarch_drone
can_swipe = FALSE
var/matrix_tag = STATION_TAG
var/matrix_tag
/mob/living/silicon/robot/drone/construction/matriarch/Initialize()
. = ..()
check_add_to_late_firers()
matrix_tag = current_map.station_short
/mob/living/silicon/robot/drone/construction/matriarch/shut_down()
return
@@ -18,7 +18,7 @@
idle_power_usage = 20
active_power_usage = 5000
var/fabricator_tag = STATION_TAG
var/fabricator_tag
var/drone_progress = 0
var/produce_drones = TRUE
var/time_last_drone = 500
@@ -31,6 +31,7 @@
/obj/machinery/drone_fabricator/Initialize()
. = ..()
check_add_to_late_firers()
fabricator_tag = current_map.station_short
/obj/machinery/drone_fabricator/do_late_fire()
enable_drone_spawn()