// Place another loot chest
placeObject(9, -3, 10, chestObject);
}
private void fillDispenser(int xx, int yy, int zz) {
final DispenserInventory inventory = getBlock(xx, yy, zz).get(Dispenser.class).getInventory();
final Random random = getRandom();
inventory.add(random.nextInt(inventory.size()), new ItemStack(VanillaMaterials.ARROW, random.nextInt(8) + 2));
}