reduce secondary uids to 20

This commit is contained in:
Stanley Dimant
2024-07-27 17:36:44 +02:00
parent ca8410fe31
commit 30f003828e

View File

@@ -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);
} }