mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
reduce secondary uids to 20
This commit is contained in:
parent
ca8410fe31
commit
30f003828e
1 changed files with 2 additions and 2 deletions
|
|
@ -26,10 +26,10 @@ public partial class MareWizardModule
|
||||||
+ "Secondary UIDs act as completely separate Mare accounts with their own pair list, joined syncshells, UID and so on." + Environment.NewLine
|
+ "Secondary UIDs act as completely separate Mare accounts with their own pair list, joined syncshells, UID and so on." + Environment.NewLine
|
||||||
+ "Use this to create UIDs if you want to use Mare on two separate game instances at once or keep your alts private." + Environment.NewLine + Environment.NewLine
|
+ "Use this to create UIDs if you want to use Mare on two separate game instances at once or keep your alts private." + Environment.NewLine + Environment.NewLine
|
||||||
+ "__Note:__ Creating a Secondary UID is _not_ necessary to use Mare for alts." + Environment.NewLine + Environment.NewLine
|
+ "__Note:__ Creating a Secondary UID is _not_ necessary to use Mare for alts." + Environment.NewLine + Environment.NewLine
|
||||||
+ $"You currently have {secondaryUids} Secondary UIDs out of a maximum of 25.");
|
+ $"You currently have {secondaryUids} Secondary UIDs out of a maximum of 20.");
|
||||||
ComponentBuilder cb = new();
|
ComponentBuilder cb = new();
|
||||||
AddHome(cb);
|
AddHome(cb);
|
||||||
cb.WithButton("Create Secondary UID", "wizard-secondary-create:" + primaryUID, ButtonStyle.Primary, emote: new Emoji("2️⃣"), disabled: secondaryUids >= 25);
|
cb.WithButton("Create Secondary UID", "wizard-secondary-create:" + primaryUID, ButtonStyle.Primary, emote: new Emoji("2️⃣"), disabled: secondaryUids >= 20);
|
||||||
await ModifyInteraction(eb, cb).ConfigureAwait(false);
|
await ModifyInteraction(eb, cb).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue