Skip to content

Commit

Permalink
adds a range (3 tiles) to subtle notification message
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeStylaLT committed Oct 14, 2023
1 parent 1dfc2cf commit 46c90d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/say_vr.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
spawn(0)
O.see_emote(src, message, 2)

var/list/other_viewers = get_hearers_in_view(source = src)
var/list/other_viewers = get_hearers_in_view(3, source = src)
for(var/mob/M in other_viewers - vis_mobs)
M.show_message(SPAN_SMALL("<i>[src] does something [pick("subtly", "discreetly", "hidden", "obscured")].</i>"), SAYCODE_TYPE_VISIBLE)

Expand Down Expand Up @@ -115,7 +115,7 @@
var/obj/O = visobj
O.see_emote(src, message, 2)

var/list/other_viewers = get_hearers_in_view(source = src)
var/list/other_viewers = get_hearers_in_view(3, source = src)
for(var/mob/M in (other_viewers - vis_mobs))
if(istype(M, /mob/observer))
continue
Expand Down

0 comments on commit 46c90d7

Please sign in to comment.