mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-28 03:34:43 +02:00
Removed all the old Alchemy/Enchanting/Sorcery stuff from the code.
This commit is contained in:
@ -125,7 +125,7 @@ public class SpoutStuff
|
||||
|
||||
for(SkillType y : SkillType.values())
|
||||
{
|
||||
if(y == SkillType.ALL || y == SkillType.ENCHANTING || y == SkillType.ALCHEMY)
|
||||
if(y == SkillType.ALL)
|
||||
continue;
|
||||
|
||||
String theFileNameA = m.getCapitalized(y.toString())+".png";
|
||||
@ -189,7 +189,7 @@ public class SpoutStuff
|
||||
//Standard XP Icons
|
||||
for(SkillType y : SkillType.values())
|
||||
{
|
||||
if(y == SkillType.ALL || y == SkillType.ENCHANTING || y == SkillType.ALCHEMY)
|
||||
if(y == SkillType.ALL)
|
||||
continue;
|
||||
files.add(new File(dir+"HUD/Standard/"+m.getCapitalized(y.toString())+".png"));
|
||||
files.add(new File(dir+"HUD/Retro/"+m.getCapitalized(y.toString())+"_r.png"));
|
||||
|
Reference in New Issue
Block a user