Merge pull request #1149 from joakibj/fix-orebasalticmineralsand
Fix oreBasalticMineralSand properly being mapped to "ore" prefix
This commit is contained in:
commit
987d1ec11e
1 changed files with 1 additions and 0 deletions
|
@ -795,6 +795,7 @@ public enum OrePrefixes {
|
|||
for (OrePrefixes tPrefix : values())
|
||||
if (aOre.startsWith(tPrefix.toString())) {
|
||||
if (tPrefix == oreNether && aOre.equals("oreNetherQuartz")) return ore;
|
||||
if (tPrefix == oreBasalt && aOre.equals("oreBasalticMineralSand")) return ore;
|
||||
return tPrefix;
|
||||
}
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue