Spelling/grammar fixup

This commit is contained in:
Daniel Bomar 2020-12-19 12:48:52 -06:00
parent 9dd09c970a
commit a7d8078a2b

View file

@ -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) {
@ -61,7 +61,7 @@ class StartYourEnginesEffect extends ContinuousEffectImpl {
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
}
}
}