mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-17 02:54:44 +01:00
Merge branch 'master' of https://github.com/tgstation/tgstation into upstream-sync
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user