mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
getExperienceFromLog cleanup
This commit is contained in:
parent
4ae276d1d7
commit
f3e823997b
@ -93,17 +93,14 @@ public final class Woodcutting {
|
||||
* @throws IllegalArgumentException if 'log' is invalid
|
||||
*/
|
||||
protected static int getExperienceFromLog(Block log, ExperienceGainMethod experienceGainMethod) {
|
||||
|
||||
//Mushrooms aren't trees so we could never get species data from them
|
||||
if(log.getType() == Material.HUGE_MUSHROOM_1 || log.getType() == Material.HUGE_MUSHROOM_2) {
|
||||
switch(log.getType()) {
|
||||
// Mushrooms aren't trees so we could never get species data from them
|
||||
switch (log.getType()) {
|
||||
case HUGE_MUSHROOM_1:
|
||||
return Config.getInstance().getWoodcuttingXPHugeBrownMushroom();
|
||||
case HUGE_MUSHROOM_2:
|
||||
return Config.getInstance().getWoodcuttingXPHugeRedMushroom();
|
||||
default:
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
TreeSpecies logType = TreeSpecies.getByData(extractLogItemData(log.getData()));
|
||||
|
Loading…
Reference in New Issue
Block a user