attempt to parse 2 worded values

This commit is contained in:
2024-07-24 19:08:41 -05:00
parent 9ec97ce448
commit 2224d811eb
+7 -2
View File
@@ -130,14 +130,19 @@ public class EffectsParser {
public static void GenerateModValues(Mod inMod, String[] data) {
int maxValue = 5;
if(inMod.type.equals("Health"))
maxValue = 7;
inMod.values = new ArrayList<>();
for (int i = 1; i < data.length; i++)
if (!data[i].isEmpty()) {
if (i == 5)
if (i >= maxValue)
continue;
if (i == 4)
if (i == maxValue - 1)
try {
String entry = "";
for (int j = i; j < data.length; j ++){