Fixes incorrect item in OITQ

Players should now get the stone sword that is intended with the leaper
kit, assuming it was some merge or pushing error.
This commit is contained in:
Sam 2016-06-16 11:12:16 +01:00
parent e7d76e2ef4
commit 9e75cc6224
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class KitLeaper extends ProgressingKit
private static final ItemStack IN_HAND = new ItemStack(Material.STONE_SWORD);
private static final ItemStack[] PLAYER_ITEMS = {
ItemStackFactory.Instance.CreateStack(Material.IRON_AXE),
ItemStackFactory.Instance.CreateStack(Material.STONE_SWORD),
ItemStackFactory.Instance.CreateStack(Material.BOW)
};