mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 11:06:29 +01:00
Add a sane limit for name length
This commit is contained in:
parent
219686bdab
commit
d27e6d0c54
@ -574,7 +574,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.dead = true;
|
this.dead = true;
|
||||||
@@ -1721,7 +2081,26 @@
|
@@ -1670,6 +2030,11 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCustomName(String s) {
|
||||||
|
+ // CraftBukkit start - Add a sane limit for name length
|
||||||
|
+ if (s.length() > 256) {
|
||||||
|
+ s = s.substring(0, 256);
|
||||||
|
+ }
|
||||||
|
+ // CraftBukkit end
|
||||||
|
this.datawatcher.watch(2, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -1721,7 +2086,26 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
public void a(AxisAlignedBB axisalignedbb) {
|
public void a(AxisAlignedBB axisalignedbb) {
|
||||||
|
Loading…
Reference in New Issue
Block a user