[ci skip] Add more identifying patch comments
This commit is contained in:
@@ -49,7 +49,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
- return name.length() > 16 ? false : name.chars().filter((i) -> {
|
||||
- return i <= 32 || i >= 127;
|
||||
- }).findAny().isEmpty();
|
||||
+ // Paper start
|
||||
+ // Paper start - username validation overriding
|
||||
+ if (name == null || name.isEmpty() || name.length() > 16) {
|
||||
+ return false;
|
||||
+ }
|
||||
@@ -65,7 +65,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ }
|
||||
+
|
||||
+ return true;
|
||||
+ // Paper end
|
||||
+ // Paper end - username validation overriding
|
||||
}
|
||||
|
||||
public static float getPickRange(boolean creative) {
|
||||
|
||||
Reference in New Issue
Block a user