[SPIGOT-2213] Customized anvil inventory doesn't work properly Created: 24/Apr/16 Updated: 24/Dec/17 Resolved: 24/Apr/16 |
|
Status: | Resolved |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | mukiu | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 0 |
Labels: | 1.8, 1.9 | ||
Environment: |
Game version: 1.8.7, 1.9.0, 1.9.2 |
Plugin: | none |
Description |
Sorry for poor English, I'm not a native English speaker. I'm using the bukkit API to create a customized anvil inventory, then display it to player, with code like this: plugin.getServer().createInventory(null, InventoryType.ANVIL);
player.openInventory(anvil);
The API worked and displayed a customized anvil inventory to player. But when I clicked on any slot of the displayed inventory, an ArrayIndexOutOfBoundException was thrown, like java.util.concurrent.ExecutionException: java.lang.IndexOutOfBoundsException: Index: 1, Size: 0 at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:?] at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:?] at net.minecraft.server.v1_9_R1.SystemUtils.a(SourceFile:46) [spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.MinecraftServer.D(MinecraftServer.java:721) [spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.DedicatedServer.D(DedicatedServer.java:400) [spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.MinecraftServer.C(MinecraftServer.java:660) [spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.MinecraftServer.run(MinecraftServer.java:559) [spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at java.lang.Thread.run(Thread.java:746) [?:?] Caused by: java.lang.IndexOutOfBoundsException: Index: 1, Size: 0 at java.util.ArrayList.rangeCheck(ArrayList.java:659) ~[?:?] at java.util.ArrayList.get(ArrayList.java:432) ~[?:?] at net.minecraft.server.v1_9_R1.Container.getSlot(Container.java:109) ~[spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.PlayerConnection.a(PlayerConnection.java:1678) ~[spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.PacketPlayInWindowClick.a(SourceFile:33) ~[spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.PacketPlayInWindowClick.a(SourceFile:10) ~[spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at net.minecraft.server.v1_9_R1.PlayerConnectionUtils$1.run(SourceFile:13) ~[spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:?] at java.util.concurrent.FutureTask.run(FutureTask.java:265) ~[?:?] at net.minecraft.server.v1_9_R1.SystemUtils.a(SourceFile:45) ~[spigot-1.9.2.jar:git-Spigot-e6f93f4-d884ab3] ... 5 more When set the inventory holder to player, the exception still be thrown: plugin.getServer().createInventory(player, InventoryType.ANVIL); player.openInventory(anvil); Here is some of my analyze, though naive but I think will help solving the problem. I followed the stack trace and found exception handling a PlayInWindowClick packet. |
Comments |
Comment by md_5 [ 24/Dec/17 ] |
1) no, it was resolved in 1.9.2 2) the newest spigot provided by buildtools is 1.12.2 3) no support is provided for older versions, especially those that are four versions and years out of date, if you want two years worth of bug fixes, then you need to update. |
Comment by Mark Vogel [ 24/Dec/17 ] |
Hi, I know this is an old issue, but was this ever actually resolved on 1.8? I am having the exact same issue on 1.8.8; the newest build Spigot provides through BuildTools. |