Buff Demolitionist kit

This commit is contained in:
AlexTheCoder 2017-07-15 15:50:45 -04:00 committed by cnr
parent bf86c08126
commit 05de024606
1 changed files with 2 additions and 1 deletions

View File

@ -145,8 +145,9 @@ public class KitDemolitionist extends KitPlayer
}
else if (streak == 8)
{
player.sendMessage(C.cRedB + "You have received 5 Throwing TNT as a Kill Streak Reward!");
player.sendMessage(C.cRedB + "You have received 5 Throwing TNT and a 30-Use Flint and Steel as a Kill Streak Reward!");
player.getInventory().addItem(new ItemBuilder(Material.TNT).setTitle(F.item("Throwing TNT")).setAmount(5).build());
player.getInventory().addItem(new ItemBuilder(Material.FLINT_AND_STEEL).setData((short) (Material.FLINT_AND_STEEL.getMaxDurability() - 30)).build());
}
}
}