mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
Dumb Map Fix (#4558)
Ferner pointed out an issue with the conveyors in cargo. They are now fixed with this PR.
This commit is contained in:
@@ -1112,6 +1112,7 @@
|
||||
icon_state = "pipe-tagger"
|
||||
var/sort_tag = ""
|
||||
var/partial = 0
|
||||
var/no_override = 0
|
||||
|
||||
/obj/structure/disposalpipe/tagger/proc/updatedesc()
|
||||
desc = initial(desc)
|
||||
@@ -1150,10 +1151,11 @@
|
||||
|
||||
/obj/structure/disposalpipe/tagger/transfer(var/obj/disposalholder/H)
|
||||
if(sort_tag)
|
||||
if(partial)
|
||||
H.setpartialtag(sort_tag)
|
||||
else
|
||||
H.settag(sort_tag)
|
||||
if(!no_override || H.destinationTag == "")
|
||||
if(partial)
|
||||
H.setpartialtag(sort_tag)
|
||||
else
|
||||
H.settag(sort_tag)
|
||||
return ..()
|
||||
|
||||
/obj/structure/disposalpipe/tagger/partial //needs two passes to tag
|
||||
|
||||
Reference in New Issue
Block a user