Skip to content

Commit

Permalink
fix: fix runtime in client screen accessing
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaxeer committed Jan 31, 2024
1 parent dddbe8f commit 0cf2f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modular_ss220/loc_blurb/code/location_blurb.dm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
else
viewers = list(viewers)

for(var/client/viewer as anything in viewers)
for(var/client/viewer in viewers)
viewer.screen += src

appear()
Expand Down Expand Up @@ -96,7 +96,7 @@
/obj/screen/text/blurb/proc/remove_from_viewers(list/client/viewers)
PRIVATE_PROC(TRUE)

for(var/client/viewer as anything in viewers)
for(var/client/viewer in viewers)
viewer.screen -= src

qdel(src)
Expand Down

0 comments on commit 0cf2f79

Please sign in to comment.