Made mcmmo all booster be stored as separate boosters to work with the queuing feature
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package com.alttd.boosterapi;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public enum BoosterType {
|
||||
|
||||
/**
|
||||
@@ -67,4 +69,22 @@ public enum BoosterType {
|
||||
return UNKNOWN;
|
||||
}
|
||||
|
||||
public static List<BoosterType> getAllMcMMOBoosters() {
|
||||
return List.of(BoosterType.ACROBATICS,
|
||||
BoosterType.ALCHEMY,
|
||||
BoosterType.ARCHERY,
|
||||
BoosterType.AXES,
|
||||
BoosterType.EXCAVATION,
|
||||
BoosterType.FISHING,
|
||||
BoosterType.HERBALISM,
|
||||
BoosterType.MINING,
|
||||
BoosterType.REPAIR,
|
||||
BoosterType.SALVAGE,
|
||||
BoosterType.SMELTING,
|
||||
BoosterType.SWORDS,
|
||||
BoosterType.TAMING,
|
||||
BoosterType.UNARMED,
|
||||
BoosterType.WOODCUTTING);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user