Two as anything greps (and some other cleanup) (#92974)

This commit is contained in:
MrMelbert
2025-09-20 12:44:28 -05:00
committed by GitHub
parent ae3274238c
commit 750ca9d2ec
86 changed files with 128 additions and 127 deletions
@@ -31,7 +31,7 @@
/datum/preference/numeric/volume/sound_radio_noise = savefile.get_entry("sound_radio_noise"),
)
for(var/entry as anything in entries)
for(var/entry in entries)
var/pref_data = entries[entry]
if(pref_data <= 1)
pref_data *= 100
@@ -11,6 +11,6 @@
if(!my_hud)
return
for(var/group_key as anything in my_hud.master_groups)
for(var/group_key in my_hud.master_groups)
var/datum/plane_master_group/group = my_hud.master_groups[group_key]
group.build_planes_offset(my_hud, my_hud.current_plane_offset)
@@ -16,6 +16,6 @@
if(!my_hud)
return
for(var/group_key as anything in my_hud.master_groups)
for(var/group_key in my_hud.master_groups)
var/datum/plane_master_group/group = my_hud.master_groups[group_key]
group.build_planes_offset(my_hud, my_hud.current_plane_offset)