Fixes incorrect usage of world.view or viewers() in some places (#95558)

This commit is contained in:
SmArtKar
2026-03-30 20:07:36 -04:00
committed by GitHub
parent e3971e8bff
commit b77d459820
10 changed files with 17 additions and 8 deletions
+1 -1
View File
@@ -175,7 +175,7 @@
// The crowd is pleased
// The delay is to make large crowds have a longer lasting applause
var/delay_offset = 0
for(var/mob/living/carbon/human/spectator in viewers(src, 7))
for(var/mob/living/carbon/human/spectator in viewers(7, src))
addtimer(CALLBACK(spectator, TYPE_PROC_REF(/mob/, emote), "clap"), delay_offset * 0.3)
delay_offset++
else