This commit is contained in:
SandPoot
2024-08-24 21:28:55 -03:00
parent 9604090014
commit c07e94be66
218 changed files with 1001 additions and 979 deletions
+2 -2
View File
@@ -163,7 +163,7 @@
/obj/machinery/biogenerator/proc/activate(mob/user)
if(user.stat != CONSCIOUS)
return
if(stat != NONE)
if(machine_stat != NONE)
return
if(processing)
to_chat(user, "<span class='warning'>The biogenerator is in the process of working.</span>")
@@ -249,7 +249,7 @@
update_icon()
/obj/machinery/biogenerator/ui_status(mob/user)
if(stat & BROKEN || panel_open)
if(machine_stat & BROKEN || panel_open)
return UI_CLOSE
return ..()
+1 -1
View File
@@ -54,7 +54,7 @@
min_wrate = 0
/obj/machinery/plantgenes/update_icon_state()
if((stat & (BROKEN|NOPOWER)))
if((machine_stat & (BROKEN|NOPOWER)))
icon_state = "dnamod-off"
else
icon_state = "dnamod"