mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-17 10:03:50 +01:00
Fixes a disposals runtime and cleans up a touch of disposals grammar (#20007)
* Fixes a disposals runtime + fixes a disposals grammar issue * Ryan's suggestion Co-authored-by: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: Sirryan2002 <80364400+Sirryan2002@users.noreply.github.com>
This commit is contained in:
@@ -495,7 +495,7 @@
|
||||
update()
|
||||
else
|
||||
for(var/mob/M in viewers(src))
|
||||
M.show_message("\the [I] bounces off of \the [src]'s rim!.", 3)
|
||||
M.show_message("\the [I] bounces off of \the [src]'s rim!", 3)
|
||||
return 0
|
||||
else
|
||||
return ..(mover, target, height)
|
||||
|
||||
@@ -257,7 +257,7 @@
|
||||
destination_tagger.ui_interact(user)
|
||||
|
||||
/obj/machinery/disposal/deliveryChute
|
||||
name = "Delivery chute"
|
||||
name = "delivery chute"
|
||||
desc = "A chute for big and small packages alike!"
|
||||
density = TRUE
|
||||
icon_state = "intake"
|
||||
@@ -279,7 +279,8 @@
|
||||
return
|
||||
|
||||
/obj/machinery/disposal/deliveryChute/Bumped(atom/movable/AM) //Go straight into the chute
|
||||
if(istype(AM, /obj/item/projectile) || isAI(AM)) return
|
||||
if(istype(AM, /obj/item/projectile) || isAI(AM) || QDELETED(AM))
|
||||
return
|
||||
switch(dir)
|
||||
if(NORTH)
|
||||
if(AM.loc.y != loc.y + 1) return
|
||||
|
||||
Reference in New Issue
Block a user