This commit is contained in:
boy2mantwicethefam
2020-03-03 01:13:29 +02:00
committed by GitHub
parent c0404a959d
commit 24aad3e3ca
2 changed files with 2 additions and 2 deletions

View File

@@ -862,7 +862,7 @@ Auto Patrol: []"},
spark(src) spark(src)
var/obj/effect/decal/cleanable/blood/oil/gib = getFromPool(/obj/effect/decal/cleanable/blood/oil, src.loc) getFromPool(/obj/effect/decal/cleanable/blood/oil, src.loc)
qdel(src) qdel(src)

View File

@@ -291,7 +291,7 @@
//The build_part_loop fires independently and will build stuff until the queue is over or when it is stopped. //The build_part_loop fires independently and will build stuff until the queue is over or when it is stopped.
/obj/machinery/r_n_d/fabricator/proc/build_part_loop() /obj/machinery/r_n_d/fabricator/proc/build_part_loop()
if(busy || stopped || being_built || stat&(NOPOWER|BROKEN)) if(busy || stopped || being_built || stat&(NOPOWER|BROKEN) || queue.len == 0)
return return
var/datum/design/D = queue_pop() var/datum/design/D = queue_pop()
if(!build_part(D)) if(!build_part(D))