- Added networking permission checks to SettingEntry.

- Removed error logging for missing save data for settings.
This commit is contained in:
Maplewheels
2026-02-22 06:35:37 -05:00
parent 91992194a9
commit f4138d2398
2 changed files with 50 additions and 14 deletions
@@ -306,7 +306,12 @@ public sealed partial class ConfigService : IConfigService
foreach (var settingBase in cfgValues)
{
#if DEBUG
// log in debug only.
ret.WithReasons(LoadSavedValueForConfig(settingBase).Reasons);
#else
LoadSavedValueForConfig(settingBase);
#endif
}
return ret;