Enum added for CategoryToPower

This commit is contained in:
2024-08-18 14:10:20 -04:00
parent dc9f33dc7b
commit 00d6e4f819
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -3069,5 +3069,13 @@ public class mbEnums {
NEARBYMOBS,
NAME;
}
public enum CategoryToPowerType {
None,
GreaterThanOrEqualTo,
GreaterThan,
Always
}
}
+1 -1
View File
@@ -19,6 +19,6 @@ public class PowerAction {
public String StackingCategory;
public mbEnums.CompoundCurveType curve;
public boolean unknown;
public String categoryToPower;
public mbEnums.CategoryToPowerType categoryToPower;
}