mirror of
https://github.com/ViaVersion/ViaFabricPlus.git
synced 2025-01-14 20:21:34 +01:00
Allow infinite characters
This commit is contained in:
parent
1abe14cdc2
commit
7520103bae
@ -60,6 +60,9 @@ public class ClassiCubeLoginScreen extends Screen {
|
||||
nameField.setPlaceholder(Text.literal("Name"));
|
||||
passwordField.setPlaceholder(Text.literal("Password"));
|
||||
|
||||
nameField.setMaxLength(Integer.MAX_VALUE);
|
||||
passwordField.setMaxLength(Integer.MAX_VALUE);
|
||||
|
||||
final CCAccount classiCubeAccount = ClassiCubeAccountHandler.INSTANCE.getAccount();
|
||||
if (classiCubeAccount != null) {
|
||||
nameField.setText(classiCubeAccount.username());
|
||||
|
Loading…
Reference in New Issue
Block a user