Merge pull request #7260 from weirddan455/spell-fix

Spelling/grammar fixup
This commit is contained in:
Oleg Agafonov 2020-12-19 20:00:53 +01:00 committed by GitHub
commit 33b034f6a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ class StartYourEnginesEffect extends ContinuousEffectImpl {
public StartYourEnginesEffect() { public StartYourEnginesEffect() {
super(Duration.EndOfTurn, Layer.TypeChangingEffects_4, SubLayer.NA, Outcome.BecomeCreature); 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) { public StartYourEnginesEffect(final StartYourEnginesEffect effect) {
@ -61,7 +61,7 @@ class StartYourEnginesEffect extends ContinuousEffectImpl {
if (permanent != null && permanent.hasSubtype(SubType.VEHICLE, game)) { if (permanent != null && permanent.hasSubtype(SubType.VEHICLE, game)) {
if (sublayer == SubLayer.NA) { if (sublayer == SubLayer.NA) {
permanent.addCardType(CardType.ARTIFACT); 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
} }
} }
} }