Skip to content

Commit b0418af

Browse files
committed
fix cfg version
1 parent de7ecae commit b0418af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The config is created automatically. ***(Path: `csgo/addons/counterstrikesharp/c
3636
"CheckIfMemberIsInGroup": false,
3737
"Apikey": "", //Steam Api Key - Only required when CheckIfMemberIsInGroup = true
3838
"ServerID": 1, // -1 or 0 = disable. Increase this number on each server
39-
"ConfigVersion": 1
39+
"ConfigVersion": 3
4040
}
4141
```
4242

src/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class Config : BasePluginConfig
2828
{
2929
[JsonPropertyName("Enabled")]
3030
public bool Enabled { get; set; } = true;
31-
public override int Version { get; set; } = 2;
31+
public override int Version { get; set; } = 3;
3232
[JsonPropertyName("UseDatabase")]
3333
public bool UseDatabase { get; set; } = true;
3434
[JsonPropertyName("KickIfFailed")]

0 commit comments

Comments
 (0)