Changed to use a separate account for each email address.

This commit is contained in:
Kei-Luna
2026-05-13 08:15:33 +09:00
parent 5332d5fe1a
commit 41df375e21
7 changed files with 146 additions and 19 deletions

View File

@@ -128,6 +128,7 @@ public class CommandTextCHS
{
public NoticeTextCHS Notice { get; } = new();
public HelpTextCHS Help { get; } = new();
public AccountTextCHS Account { get; } = new();
public GirlTextCHS Girl { get; } = new();
public GiveAllTextCHS GiveAll { get; } = new();
public DebugTextCHS Debug { get; } = new();
@@ -218,6 +219,14 @@ public class HelpTextCHS
public string CommandAlias => "命令别名: ";
}
public class AccountTextCHS
{
public string Desc => "管理 SDK 登录使用的账号映射";
public string Usage => "用法: /account create <邮箱> <UID>";
public string Created => "已创建账号映射: {0} -> UID {1}";
public string CreateFailed => "创建账号映射失败: {0}";
}
/// <summary>
/// path: Game.Command.Girl
/// </summary>