Skip to content

Commit

Permalink
bugfix: exosuit fabricator unpowered print (#6343)
Browse files Browse the repository at this point in the history
* bugfix: exosuit fabricator unpowered print

* suggestion commit

Co-authored-by: Antoonij <42318445+Antoonij@users.noreply.github.com>

---------

Co-authored-by: Antoonij <42318445+Antoonij@users.noreply.github.com>
  • Loading branch information
Andrew455h and Antoonij authored Jan 10, 2025
1 parent ab7069d commit cd9d243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/mecha/mech_fabricator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
* Attempts to build the first item in the queue.
*/
/obj/machinery/mecha_part_fabricator/proc/process_queue()
if(!processing_queue || being_built || !length(build_queue))
if(!processing_queue || being_built || !length(build_queue) || !is_operational())
return
var/datum/design/D = build_queue[1]
if(build_design(D))
Expand Down

0 comments on commit cd9d243

Please sign in to comment.