From 7eac4dd99ce5de58fbb5b72ca9723afedec98ca0 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 4 Oct 2022 20:56:16 +0300 Subject: [PATCH] Increase IGN limit In Splatoon limit is 10. But special characters can count as 2 even if in Splatoon they count as 1. --- app/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/constants.ts b/app/constants.ts index 87b464e14..6f909500e 100644 --- a/app/constants.ts +++ b/app/constants.ts @@ -8,7 +8,7 @@ export const DISCORD_MESSAGE_MAX_LENGTH = 2000; export const USER = { BIO_MAX_LENGTH: DISCORD_MESSAGE_MAX_LENGTH, CUSTOM_URL_MAX_LENGTH: 32, - IN_GAME_NAME_TEXT_MAX_LENGTH: 10, + IN_GAME_NAME_TEXT_MAX_LENGTH: 20, IN_GAME_NAME_DISCRIMINATOR_LENGTH: 4, };