Fix inability to upgrade non-elemental wands using tomes of arcana

This commit is contained in:
Electroblob
2018-02-18 23:33:54 +00:00
parent a4695bcce1
commit f4d7ba6030
@@ -970,6 +970,7 @@ public final class WizardryUtilities {
*/
public static Item getWand(Tier tier, Element element){
if(tier == null) throw new NullPointerException("The given tier cannot be null.");
if(element == null) element = Element.MAGIC;
return WizardryItems.WAND_MAP.get(ImmutablePair.of(tier, element));
}
}