mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-30 11:53:52 -07:00
@@ -3,7 +3,7 @@
|
||||
@@ -30,6 +30,11 @@
|
||||
|
||||
if (nbttagcompound != null && nbttagcompound.hasKeyOfType("Patterns", 9)) {
|
||||
this.patterns = nbttagcompound.getList("Patterns", 10).c();
|
||||
this.patterns = nbttagcompound.getList("Patterns", 10).clone();
|
||||
+ // CraftBukkit start
|
||||
+ while (this.patterns.size() > 20) {
|
||||
+ this.patterns.remove(20);
|
||||
|
Reference in New Issue
Block a user