mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-19 05:57:42 +01:00
Fix some things in item unlocks. Add unlock cheatcodes to default configuration.
This commit is contained in:
parent
51bfcd1136
commit
9910b17ab0
8 changed files with 115 additions and 37 deletions
|
|
@ -34,7 +34,11 @@ public class Configuration : IPluginConfiguration, ISavable
|
|||
[JsonProperty(Order = int.MaxValue)]
|
||||
public ISortMode<Design> SortMode { get; set; } = ISortMode<Design>.FoldersFirst;
|
||||
|
||||
public List<(string Code, bool Enabled)> Codes { get; set; } = new List<(string Code, bool Enabled)>();
|
||||
public List<(string Code, bool Enabled)> Codes { get; set; } = new List<(string Code, bool Enabled)>()
|
||||
{
|
||||
(CodeService.CodeInventoryString, false),
|
||||
(CodeService.CodeMesmerString, false),
|
||||
};
|
||||
|
||||
#if DEBUG
|
||||
public bool DebugMode { get; set; } = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue