another fix for fix mabe

idk if it works
This commit is contained in:
Chayapak 2023-06-03 06:58:58 +07:00
parent 60ebbbc09d
commit 6b79f57801

View file

@ -29,6 +29,8 @@ public class CreayunChatParser implements ChatParser {
public PlayerMessage parse (Component message) {
final String stringified = ComponentUtilities.stringify(message);
if (stringified.length() > 512) return null; // will this fix the fard problem?
final Matcher matcher = PATTERN.matcher(stringified);
if (matcher.find()) {