Skip to content

Commit

Permalink
refactor: Update KitsuneSteamRestrict.cs to use property for Database…
Browse files Browse the repository at this point in the history
…Settings
  • Loading branch information
K4ryuu committed May 19, 2024
1 parent f5c1409 commit dd1eb63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KitsuneSteamRestrict.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class PluginConfig : BasePluginConfig
public bool BlockGameBanned { get; set; } = false;

[JsonPropertyName("DatabaseSettings")]
public DatabaseSettings DatabaseSettings = new DatabaseSettings();
public DatabaseSettings DatabaseSettings { get; set; } = new DatabaseSettings();

[JsonPropertyName("ConfigVersion")]
public override int Version { get; set; } = 2;
Expand Down

0 comments on commit dd1eb63

Please sign in to comment.