Values are floats

This commit is contained in:
2024-08-17 15:23:12 -04:00
parent 218de2bb70
commit ed09bffc87
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -94,8 +94,8 @@ public class PowersParser {
powerEntry.excludeType = iterator.next();
powerEntry.costType = iterator.next();
powerEntry.cost = Float.parseFloat(iterator.next());
powerEntry.difficulty = Integer.parseInt(iterator.next());
powerEntry.precision = Integer.parseInt(iterator.next());
powerEntry.difficulty = Float.parseFloat(iterator.next());
powerEntry.precision = Float.parseFloat(iterator.next());
powerEntry.init_time = Float.parseFloat(iterator.next());
powerEntry.release_time = Float.parseFloat(iterator.next());
powerEntry.recycle_time = Float.parseFloat(iterator.next());