Skip to content

Commit

Permalink
fix: config version not updating
Browse files Browse the repository at this point in the history
  • Loading branch information
hsanger committed Jul 3, 2023
1 parent e286958 commit 68e3b07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/scripts/utils/localStorageHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,10 @@ if (config.configVersion !== defaultConfig.configVersion) {
}
case "12": {
// Version 13: Added text-based kill feed option
// Have to set configVersion twice for some reason
proxy.configVersion = "13";
proxy.configVersion = "13";
proxy.textKillFeed = defaultConfig.textKillFeed;
break;
}
default: {
if (!mutated) {
Expand Down

0 comments on commit 68e3b07

Please sign in to comment.