diff --git a/src/EllieBot/Modules/Games/Fish/FishConfigService.cs b/src/EllieBot/Modules/Games/Fish/FishConfigService.cs index 92fa150..efabc52 100644 --- a/src/EllieBot/Modules/Games/Fish/FishConfigService.cs +++ b/src/EllieBot/Modules/Games/Fish/FishConfigService.cs @@ -20,10 +20,13 @@ public sealed class FishConfigService : ConfigServiceBase private void Migrate() { - ModifyConfig(c => + if (data.Version < 2) { - c.Version = 2; - c.RequireCaptcha = true; - }); + ModifyConfig(c => + { + c.Version = 2; + c.RequireCaptcha = true; + }); + } } } \ No newline at end of file