attempt to parse 2 worded values

This commit is contained in:
2024-07-24 19:14:15 -05:00
parent 2f837ace1e
commit 0b4e0d65a9
@@ -130,8 +130,14 @@ public class EffectsParser {
public static void GenerateModValues(Mod inMod, String[] data) {
int maxValue = 5;
if(inMod.type != null && inMod.type.name().equals("Health")){
maxValue = 7;
}
if(data.length < maxValue)
maxValue = data.length;