More Fixes
This commit is contained in:
parent
607c164753
commit
07f610d4bd
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="DataSourceManagerImpl" format="xml" hash="2876127046">
|
<component name="DataSourceManagerImpl" format="xml" hash="1486084220">
|
||||||
<data-source source="LOCAL" name="Mineplex" uuid="14dfc55d-5343-47c4-ab24-76a055b8059e">
|
<data-source source="LOCAL" name="Mineplex" uuid="14dfc55d-5343-47c4-ab24-76a055b8059e">
|
||||||
<driver-ref>mysql</driver-ref>
|
<driver-ref>mysql</driver-ref>
|
||||||
<synchronize>true</synchronize>
|
<synchronize>true</synchronize>
|
||||||
|
@ -19,7 +19,7 @@ public abstract class HatGadget extends OutfitGadget
|
|||||||
|
|
||||||
public HatGadget(GadgetManager manager, String name, String[] desc, int cost, ItemStack item, String... altNames)
|
public HatGadget(GadgetManager manager, String name, String[] desc, int cost, ItemStack item, String... altNames)
|
||||||
{
|
{
|
||||||
super(manager, name, desc, cost, ArmorSlot.Helmet, item.getType(), item.getData().getData());
|
super(manager, name, desc, cost, ArmorSlot.Helmet, item.getType(), item.getData().getData(), altNames);
|
||||||
_hat = item;
|
_hat = item;
|
||||||
|
|
||||||
ItemMeta im = _hat.getItemMeta();
|
ItemMeta im = _hat.getItemMeta();
|
||||||
|
@ -480,12 +480,17 @@ public class RewardManager
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!isExcluded)
|
||||||
|
{
|
||||||
possibleRewards.add(treasure);
|
possibleRewards.add(treasure);
|
||||||
totalWeight += treasure.getWeight();
|
totalWeight += treasure.getWeight();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (possibleRewards.size() == 0)
|
if (possibleRewards.size() == 0)
|
||||||
{
|
{
|
||||||
|
totalWeight = 0;
|
||||||
|
|
||||||
// go again, ignore excluded
|
// go again, ignore excluded
|
||||||
for (Reward treasure : treasureList)
|
for (Reward treasure : treasureList)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user