added big larry to chests
This commit is contained in:
parent
9eed03237b
commit
b7854e6cab
@ -301,6 +301,8 @@ public class RewardManager
|
||||
new ItemStack(Material.SKULL_ITEM, 1, (short) 0, (byte) 1), rarity, 25));
|
||||
addReward(new UnknownPackageReward(donationManager, "Block Morph", "Block Morph",
|
||||
new ItemStack(Material.EMERALD_BLOCK), rarity, 20));
|
||||
addReward(new UnknownPackageReward(donationManager, "Big Larry Morph", "Big Larry Morph",
|
||||
new ItemStack(Material.SLIME_BALL), rarity, 10));
|
||||
|
||||
// Particles
|
||||
addReward(new UnknownPackageReward(donationManager, "Shadow Walk Particles", "Shadow Walk",
|
||||
|
@ -49,7 +49,7 @@ public class BackCommand extends CommandBase<Teleport>
|
||||
int back = 0;
|
||||
for (int i = 0 ; i < amount ; i++)
|
||||
{
|
||||
if (Plugin.GetTPHistory(player).isEmpty())
|
||||
if (Plugin.GetTPHistory(player) == null || Plugin.GetTPHistory(player).isEmpty())
|
||||
break;
|
||||
|
||||
loc = Plugin.GetTPHistory(player).removeFirst();
|
||||
|
Loading…
Reference in New Issue
Block a user