From 67a7af8c05828b529b6b4492404a5a79c9846531 Mon Sep 17 00:00:00 2001 From: kmyuhkyuk <72241714+kmyuhkyuk@users.noreply.github.com> Date: Sun, 15 Mar 2026 08:12:15 +0800 Subject: [PATCH] Update --- SlayTheSpire2.LAN.Multiplayer/Components/PlayerNameLineEdit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SlayTheSpire2.LAN.Multiplayer/Components/PlayerNameLineEdit.cs b/SlayTheSpire2.LAN.Multiplayer/Components/PlayerNameLineEdit.cs index d79555a..13b1dd7 100644 --- a/SlayTheSpire2.LAN.Multiplayer/Components/PlayerNameLineEdit.cs +++ b/SlayTheSpire2.LAN.Multiplayer/Components/PlayerNameLineEdit.cs @@ -9,7 +9,7 @@ namespace SlayTheSpire2.LAN.Multiplayer.Components [GeneratedRegex(@"[\x00-\x1F\x7F<>:""/\\|?*\x0B\x0C\x0D&;`#$%^+={}]")] private static partial Regex InvalidCharsRegex(); - public bool IsInvalid => !GetPlayerNameIsInvalid(Text); + public bool IsInvalid => GetPlayerNameIsInvalid(Text); public bool IsEmpty => string.IsNullOrEmpty(Text);