Verified Leaders will consider Skulls as an item to pass successfully.

This commit is contained in:
sigonasr2 2016-09-05 20:52:25 -05:00
parent 8b2aa239da
commit e8fa292f63
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -94,7 +94,7 @@ public enum MonsterDifficulty {
public void KeepRollingForBosses(boolean isBoss, List<ItemStack> droplist, ItemStack goodie, Chests chest, Player damager) { public void KeepRollingForBosses(boolean isBoss, List<ItemStack> droplist, ItemStack goodie, Chests chest, Player damager) {
int roll=0; int roll=0;
while (isBoss && !GenericFunctions.isEquip(goodie) && roll<50) { while (isBoss && !isValidSetItem(goodie) && roll<50) {
goodie=chest.getSingleDrop(damager); goodie=chest.getSingleDrop(damager);
ModifyAndAddDropToList(droplist,goodie,damager); ModifyAndAddDropToList(droplist,goodie,damager);
roll++; roll++;