13
0
geforkt von Mirrors/Paper
Paper/src/main
h31ix 743d0fb603 Properly return contents of Inventory. Fixes BUKKIT-3930
When an array of an inventory's contents is requested, we loop through the contents of the NMS inventory's ItemStacks in order to return Bukkit ItemStacks that can be used through the API. However, the NMS ItemStack can, in some cases, be larger than the physical size of the inventory. Using the size of the NMS array as a limit on the loop that follows can result in an ArrayIndexOutOfBoundsException because the Bukkit array's length is the actual size of the inventory, and thus will be smaller.

With this commit we use the smaller of the two arrays' length as the limit in the loop, thus eliminating the possibility that the smaller array will be asked for an index higher than its length.
2013-04-02 16:10:04 -05:00
..
java Properly return contents of Inventory. Fixes BUKKIT-3930 2013-04-02 16:10:04 -05:00
resources/configurations [Bleeding] Implement periodic chunk garbage collector 2012-12-29 16:50:05 -06:00