Field camelcase
This commit is contained in:
@@ -217,7 +217,7 @@ public class PowerActionParser {
|
||||
arguments = Arrays.asList(lineValues.get(1).trim().split("\\s+"));
|
||||
|
||||
for (String bodyPart : arguments)
|
||||
powerAction.bodyparts.add(Integer.parseInt(bodyPart));
|
||||
powerAction.bodyParts.add(Integer.parseInt(bodyPart));
|
||||
break;
|
||||
case "FEMALEBODYPARTS":
|
||||
arguments = Arrays.asList(lineValues.get(1).trim().split("\\s+"));
|
||||
|
||||
@@ -28,7 +28,7 @@ public class PowerAction {
|
||||
|
||||
// Additional variables after header go here.
|
||||
|
||||
public ArrayList<Integer> bodyparts = new ArrayList<>();
|
||||
public ArrayList<Integer> bodyParts = new ArrayList<>();
|
||||
public ArrayList<Integer> femaleBodyParts = new ArrayList<>();
|
||||
public boolean shouldShowWeapons = false;
|
||||
public boolean shouldShowArmor = false;
|
||||
|
||||
Reference in New Issue
Block a user