diff --git a/code/modules/recycling/disposal/bin.dm b/code/modules/recycling/disposal/bin.dm index da2ff6d0bd2..69c716bb0bc 100644 --- a/code/modules/recycling/disposal/bin.dm +++ b/code/modules/recycling/disposal/bin.dm @@ -32,7 +32,7 @@ stored = make_from pressure_charging = FALSE // newly built disposal bins start with pump off else - stored = new /obj/structure/disposalconstruct(null, make_from = src) + stored = new /obj/structure/disposalconstruct(null, null , SOUTH , FALSE , src) trunk_check() diff --git a/code/modules/recycling/disposal/outlet.dm b/code/modules/recycling/disposal/outlet.dm index 8385d22d561..0ef17179698 100644 --- a/code/modules/recycling/disposal/outlet.dm +++ b/code/modules/recycling/disposal/outlet.dm @@ -20,7 +20,7 @@ make_from.forceMove(src) stored = make_from else - stored = new /obj/structure/disposalconstruct(src, make_from = src) + stored = new /obj/structure/disposalconstruct(src, null , SOUTH , FALSE , src) target = get_ranged_target_turf(src, dir, 10) diff --git a/code/modules/recycling/disposal/pipe.dm b/code/modules/recycling/disposal/pipe.dm index 194432c4060..02ca211cb8d 100644 --- a/code/modules/recycling/disposal/pipe.dm +++ b/code/modules/recycling/disposal/pipe.dm @@ -26,7 +26,7 @@ make_from.forceMove(src) stored = make_from else - stored = new /obj/structure/disposalconstruct(src, make_from=src) + stored = new /obj/structure/disposalconstruct(src, null , SOUTH , FALSE , src) if(dir in GLOB.diagonals) // Bent pipes already have all the dirs set initialize_dirs = NONE