Let's be consistent D:

This commit is contained in:
bm01 2013-02-16 21:25:31 +01:00
parent f3e823997b
commit 91010f2958

View File

@ -95,12 +95,12 @@ public final class Woodcutting {
protected static int getExperienceFromLog(Block log, ExperienceGainMethod experienceGainMethod) { protected static int getExperienceFromLog(Block log, ExperienceGainMethod experienceGainMethod) {
// Mushrooms aren't trees so we could never get species data from them // Mushrooms aren't trees so we could never get species data from them
switch (log.getType()) { switch (log.getType()) {
case HUGE_MUSHROOM_1: case HUGE_MUSHROOM_1:
return Config.getInstance().getWoodcuttingXPHugeBrownMushroom(); return Config.getInstance().getWoodcuttingXPHugeBrownMushroom();
case HUGE_MUSHROOM_2: case HUGE_MUSHROOM_2:
return Config.getInstance().getWoodcuttingXPHugeRedMushroom(); return Config.getInstance().getWoodcuttingXPHugeRedMushroom();
default: default:
break; break;
} }
TreeSpecies logType = TreeSpecies.getByData(extractLogItemData(log.getData())); TreeSpecies logType = TreeSpecies.getByData(extractLogItemData(log.getData()));