mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-22 04:24:20 +01:00
excludes user from seeing storage insertion message (#27490)
This commit is contained in:
@@ -468,14 +468,12 @@
|
||||
add_fingerprint(user)
|
||||
|
||||
if(!prevent_warning)
|
||||
// all mobs with clients attached, sans the item's user
|
||||
|
||||
// the item's user will always get a notification
|
||||
to_chat(user, "<span class='notice'>You put [I] into [src].</span>")
|
||||
|
||||
// if the item less than normal sized, only people within 1 tile get the message, otherwise, everybody in view gets it
|
||||
if(I.w_class < WEIGHT_CLASS_NORMAL)
|
||||
for(var/mob/M in range(1, user))
|
||||
for(var/mob/M in orange(1, user))
|
||||
if(in_range(M, user))
|
||||
M.show_message("<span class='notice'>[user] puts [I] into [src].</span>")
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user