diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/discord.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/commands/discord.txt b/npc/commands/discord.txt index 0aa56660e..e411de419 100644 --- a/npc/commands/discord.txt +++ b/npc/commands/discord.txt @@ -77,9 +77,10 @@ OnCall: mesc l("Username#0000"), 2; input .@discord$; if (.@discord$ == "") close; + if (strtolower(.@discord$) == "username#0000") { break; } .@i = explode(.@d$, .@discord$, "#"); - if (.@i != 2) { mesc l("Invalid Discord ID. (L1)"); next; break; } - if (getstrlen(.@d$[1]) != 4) { mesc l("Invalid Discord ID. (L2)"); next; break; } + if (.@i != 2) { mesc l("Invalid Discord ID."); next; break; } + if (getstrlen(.@d$[1]) != 4) { mesc l("Invalid Discord ID."); next; break; } mes ""; clear; mesc l("Linking the following Discord account:"); |