summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityBanner.patch
blob: 0819ccaeada5c3b018e6cb37a6bcaa1d532b5f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- a/net/minecraft/server/TileEntityBanner.java
+++ b/net/minecraft/server/TileEntityBanner.java
@@ -21,6 +21,11 @@
 
             if (nbttagcompound.hasKey("Patterns")) {
                 this.patterns = (NBTTagList) nbttagcompound.getList("Patterns", 10).clone();
+                // CraftBukkit start
+                while (this.patterns.size() > 20) {
+                    this.patterns.remove(20);
+                }
+                // CraftBukkit end
             }
 
             if (nbttagcompound.hasKeyOfType("Base", 99)) {
@@ -56,6 +61,11 @@
         super.a(nbttagcompound);
         this.color = nbttagcompound.getInt("Base");
         this.patterns = nbttagcompound.getList("Patterns", 10);
+        // CraftBukkit start
+        while (this.patterns.size() > 20) {
+            this.patterns.remove(20);
+        }
+        // CraftBukkit end
         this.h = null;
         this.i = null;
         this.j = null;