Skip to content

Commit

Permalink
Merge pull request #7260 from weirddan455/spell-fix
Browse files Browse the repository at this point in the history
Spelling/grammar fixup
  • Loading branch information
JayDi85 authored Dec 19, 2020
2 parents 9dd09c9 + a7d8078 commit 33b034f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mage.Sets/src/mage/cards/s/StartYourEngines.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class StartYourEnginesEffect extends ContinuousEffectImpl {

public StartYourEnginesEffect() {
super(Duration.EndOfTurn, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.BecomeCreature);
staticText = "Vehicles you control becomes artifact creatures until end of turn";
staticText = "Vehicles you control become artifact creatures until end of turn";
}

public StartYourEnginesEffect(final StartYourEnginesEffect effect) {
Expand All @@ -61,7 +61,7 @@ public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game)
if (permanent != null && permanent.hasSubtype(SubType.VEHICLE, game)) {
if (sublayer == SubLayer.NA) {
permanent.addCardType(CardType.ARTIFACT);
permanent.addCardType(CardType.CREATURE);// TODO: Chcek if giving CREATURE Type is correct
permanent.addCardType(CardType.CREATURE);// TODO: Check if giving CREATURE Type is correct
}
}
}
Expand Down

0 comments on commit 33b034f

Please sign in to comment.