mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 17:50:13 +00:00
fix(bot): correct default values for id display split and caps
This commit is contained in:
parent
0c802ab0bd
commit
a0f6ed6f89
1 changed files with 2 additions and 2 deletions
|
|
@ -474,7 +474,7 @@ public class Config
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var newVal = ctx.MatchToggle(true);
|
var newVal = ctx.MatchToggle(false);
|
||||||
await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplaySplit = newVal });
|
await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplaySplit = newVal });
|
||||||
await ctx.Reply($"Splitting of 6-character IDs with a hyphen is now {EnabledDisabled(newVal)}.");
|
await ctx.Reply($"Splitting of 6-character IDs with a hyphen is now {EnabledDisabled(newVal)}.");
|
||||||
}
|
}
|
||||||
|
|
@ -488,7 +488,7 @@ public class Config
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var newVal = ctx.MatchToggle(true);
|
var newVal = ctx.MatchToggle(false);
|
||||||
await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplayCaps = newVal });
|
await ctx.Repository.UpdateSystemConfig(ctx.System.Id, new() { HidDisplayCaps = newVal });
|
||||||
await ctx.Reply($"Displaying IDs as capital letters is now {EnabledDisabled(newVal)}.");
|
await ctx.Reply($"Displaying IDs as capital letters is now {EnabledDisabled(newVal)}.");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue