Skip to content

Commit

Permalink
highlander hours
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaFire15 committed Dec 9, 2023
1 parent 7d2fce5 commit d65146e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions code/modules/recycling/conveyor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,11 @@ GLOBAL_LIST_EMPTY(conveyors_by_id)
if(!operating)
SSmove_manager.stop_looping(convayable, SSconveyors)
return
//NSV13 - account for potentially changing location between sig send and reaching this.
if(convayable.loc != source)
SSmove_manager.stop_looping(convayable, SSconveyors)
return
//NSV13 end.
start_conveying(convayable)

/obj/machinery/conveyor/proc/conveyable_exit(datum/source, atom/convayable, direction)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@
return
if(!isobj(entering) || iseffect(entering))
return
if(entering.loc != source)
return
if(length(held_components) > 0)
var/obj/held_component = held_components[1]
if(held_component.type == entering.type) //Please do throw these hungry machines some components.
Expand Down

0 comments on commit d65146e

Please sign in to comment.