More effectmod parser work.

This commit is contained in:
2024-08-12 10:45:19 -04:00
parent 3ed7f7c3fb
commit c19f6df690
@@ -203,6 +203,7 @@ public class EffectsParser {
case Dodge: case Dodge:
case ScanRange: case ScanRange:
case ScaleHeight: case ScaleHeight:
case ScaleWidth:
effectModifier.min = Float.parseFloat(modValues.get(1).trim()); effectModifier.min = Float.parseFloat(modValues.get(1).trim());
effectModifier.scale = Float.parseFloat(modValues.get(2).trim()); effectModifier.scale = Float.parseFloat(modValues.get(2).trim());
effectModifier.compoundCurveType = mbEnums.CompoundCurveType.valueOf(modValues.get(3).trim()); effectModifier.compoundCurveType = mbEnums.CompoundCurveType.valueOf(modValues.get(3).trim());