Fixed aptitude template step.
This commit is contained in:
parent
e7767d12dc
commit
dd248bc4a5
|
@ -59,13 +59,13 @@ public class AptTemplateStep extends Step
|
|||
List<ChangeValueStep> getSteps()
|
||||
{
|
||||
List<ChangeValueStep> ret = new ArrayList<>();
|
||||
ret.add(new ChangePropertyStep(cognition, "COG", "cognition"));
|
||||
ret.add(new ChangePropertyStep(coordination, "COO", "coordination"));
|
||||
ret.add(new ChangePropertyStep(intuition, "INT", "intuition"));
|
||||
ret.add(new ChangePropertyStep(reflexes, "REF", "reflexes"));
|
||||
ret.add(new ChangePropertyStep(savvy, "SAV", "savvy"));
|
||||
ret.add(new ChangePropertyStep(somatics, "SOM", "somatics"));
|
||||
ret.add(new ChangePropertyStep(willpower, "WIL", "willpower"));
|
||||
ret.add(new ChangeAptitudeStep(cognition, "COG"));
|
||||
ret.add(new ChangeAptitudeStep(coordination, "COO"));
|
||||
ret.add(new ChangeAptitudeStep(intuition, "INT"));
|
||||
ret.add(new ChangeAptitudeStep(reflexes, "REF"));
|
||||
ret.add(new ChangeAptitudeStep(savvy, "SAV"));
|
||||
ret.add(new ChangeAptitudeStep(somatics, "SOM"));
|
||||
ret.add(new ChangeAptitudeStep(willpower, "WIL"));
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue