Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Celeste.Mod.mm/Mod/Core/CoreModuleSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,8 @@ public bool ColorizedLogging {
}
}

public bool NestedOptions { get; set; }

// Keep in sync with https://github.com/EverestAPI/Olympus/blob/main/src/scenes/options.lua :: mirrorPreferences
public string MirrorPreferences { get; set; } = "gb,jade,otobot,wegfan";

Expand Down Expand Up @@ -311,7 +313,7 @@ public bool ColorizedLogging {

[SettingIgnore]
public int DebugRCPort { get; set; } = 32270;

[SettingIgnore]
[EditorBrowsable(EditorBrowsableState.Never)]
// This option is exclusively used internally; do not use it in mods. Use AllowDistort instead.
Expand All @@ -323,7 +325,7 @@ public bool ColorizedLogging {
/// </summary>
[SettingIgnore]
[YamlIgnore]
public bool AllowDistort => !Settings.Instance.DisableFlashes || PhotosensitivityDistortOverride;
public bool AllowDistort => !Settings.Instance.DisableFlashes || PhotosensitivityDistortOverride;

[SettingIgnore]
[EditorBrowsable(EditorBrowsableState.Never)]
Expand Down Expand Up @@ -362,7 +364,7 @@ public bool ColorizedLogging {
/// </summary>
[SettingIgnore]
[YamlIgnore]
public bool AllowScreenFlash => !Settings.Instance.DisableFlashes || PhotosensitivityScreenFlashOverride;
public bool AllowScreenFlash => !Settings.Instance.DisableFlashes || PhotosensitivityScreenFlashOverride;

[SettingIgnore]
[EditorBrowsable(EditorBrowsableState.Never)]
Expand Down
Loading