Removes old height parameter from CanPass proc

This commit is contained in:
CitadelStationBot
2017-07-13 17:46:36 -05:00
parent da324257fe
commit 1da785ffb5
46 changed files with 57 additions and 101 deletions
+2 -2
View File
@@ -332,7 +332,7 @@
eject()
. = TRUE
/obj/machinery/disposal/bin/CanPass(atom/movable/mover, turf/target, height=0)
/obj/machinery/disposal/bin/CanPass(atom/movable/mover, turf/target)
if (isitem(mover) && mover.throwing)
var/obj/item/I = mover
if(istype(I, /obj/item/projectile))
@@ -345,7 +345,7 @@
visible_message("<span class='notice'>[I] bounces off of [src]'s rim!</span>")
return 0
else
return ..(mover, target, height)
return ..(mover, target)
/obj/machinery/disposal/bin/flush()
..()