geforkt von Mirrors/FastAsyncWorldEdit
Fixed bad array bounds check in BukkitWorld.setContainerBlockContents().
Dieser Commit ist enthalten in:
Ursprung
0f4a9e58b6
Commit
53d5a0c961
@ -412,7 +412,7 @@ public class BukkitWorld extends LocalWorld {
|
||||
int size = inven.getSize();
|
||||
|
||||
for (int i = 0; i < size; i++) {
|
||||
if (i >= contents.length + 1) {
|
||||
if (i >= contents.length) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren