Fix 'chosen' spelling (#9021)

This commit is contained in:
DeepCrimson 2022-05-27 20:45:07 -07:00 committed by GitHub
parent 74a16d179f
commit 9084180937
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 103 additions and 103 deletions

View file

@ -20,7 +20,7 @@ public class ModeChoiceSourceCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
String choosenMode = (String) game.getState().getValue(source.getSourceId() + "_modeChoice");
return choosenMode != null && choosenMode.equals(mode);
String chosenMode = (String) game.getState().getValue(source.getSourceId() + "_modeChoice");
return chosenMode != null && chosenMode.equals(mode);
}
}