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:
GDN
2022-12-29 09:33:06 -06:00
committed by GitHub
parent ce5f8059b3
commit 7d6da68300
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -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)
+3 -2
View File
@@ -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