Made mcmmo all booster be stored as separate boosters to work with the queuing feature

This commit is contained in:
2022-09-03 03:43:10 +02:00
parent 47e10bd61e
commit 8f567ec4d6
2 changed files with 36 additions and 8 deletions
@@ -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);
}
}