mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 19:13:30 +01:00
lwap no longer points out invisible admins, revenants, or fully stealthed clings (#25883)
This commit is contained in:
@@ -327,7 +327,7 @@
|
||||
for(var/mob/living/L in range(10, our_scope.given_turf))
|
||||
if(locks >= LWAP_LOCK_CAP)
|
||||
return
|
||||
if(L == owner || L.stat == DEAD || isslime(L) || ismonkeybasic(L)) //xenobio moment
|
||||
if(L == owner || L.stat == DEAD || isslime(L) || ismonkeybasic(L) || L.invisibility > owner.see_invisible) //xenobio moment
|
||||
continue
|
||||
new /obj/effect/temp_visual/single_user/lwap_ping(owner.loc, owner, L)
|
||||
locks++
|
||||
|
||||
Reference in New Issue
Block a user