makes you unable to to see inventory from another zlvl (#26793)

This commit is contained in:
Qwertytoforty
2024-09-15 16:19:48 -04:00
committed by GitHub
parent 04e65c7496
commit 44694d8fa5
@@ -468,20 +468,18 @@
if(!prevent_warning)
// all mobs with clients attached, sans the item's user
var/viewer_list = GLOB.player_list - 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 viewer_list)
for(var/mob/M in range(1, user))
if(in_range(M, user))
M.show_message("<span class='notice'>[user] puts [I] into [src].</span>")
else
// restrict player list to include only those in view
viewer_list = viewer_list & viewers(world.view, user)
for(var/mob/M in viewer_list)
for(var/mob/M in oviewers(7, user))
M.show_message("<span class='notice'>[user] puts [I] into [src].</span>")
orient2hud(user)