Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent4vx committed Dec 16, 2021
1 parent a382335 commit b7407fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class SpellTemplateLevelTransformer implements Transformer<SpellTemplate.
public static final int EFFECT_AREAS = 15;
public static final int REQUIRED_STATES = 16;
public static final int FORBIDDEN_STATES = 17;
public static final int MIN_PLAYE_LEVEL = 18;
public static final int MIN_PLAYER_LEVEL = 18;
public static final int ENDS_TURN_ON_FAILURE = 19;

private final Transformer<EffectArea> areaTransformer;
Expand Down Expand Up @@ -95,7 +95,7 @@ public SpellTemplate.Level unserialize(String serialize) {
areas(parts[EFFECT_AREAS]),
states(parts[REQUIRED_STATES]),
states(parts[FORBIDDEN_STATES]),
integer(parts[MIN_PLAYE_LEVEL]),
integer(parts[MIN_PLAYER_LEVEL]),
bool(parts[ENDS_TURN_ON_FAILURE])
)
);
Expand Down

0 comments on commit b7407fb

Please sign in to comment.