Fixed typos

This commit is contained in:
Oleg Agafonov 2021-03-07 01:27:00 +04:00
parent d3b787b9a6
commit 7e72ba95bc
3 changed files with 5 additions and 5 deletions

View file

@ -1966,7 +1966,7 @@ public abstract class GameImpl implements Game, Serializable {
); );
for (Card copiedCard : allCopiedCards) { for (Card copiedCard : allCopiedCards) {
// 1. Zone must be checked from main card only cause mdf parts can have different zones // 1. Zone must be checked from main card only cause mdf parts can have different zones
// (one side on battlefield, another side on outsize) // (one side on battlefield, another side on outside)
// 2. Copied card creates in OUTSIDE zone and put to stack manually in the same code, // 2. Copied card creates in OUTSIDE zone and put to stack manually in the same code,
// so no SBA calls before real zone change (you will see here only unused cards like Isochron Scepter) // so no SBA calls before real zone change (you will see here only unused cards like Isochron Scepter)
// (Isochron Scepter) 12/1/2004: If you don't want to cast the copy, you can choose not to; the copy ceases // (Isochron Scepter) 12/1/2004: If you don't want to cast the copy, you can choose not to; the copy ceases

View file

@ -963,8 +963,8 @@ public class Spell extends StackObjImpl implements Card {
} }
/** /**
* Game processing a copies as normal cards, so you don't need to check spell's copy for move/exile * Game processing a copies as normal cards, so you don't need to check spell's copy for move/exile.
* Use this only in exceptional situations or skip unaffected code/choices * Use this only in exceptional situations or to skip unaffected code/choices.
* *
* @return * @return
*/ */
@ -1035,7 +1035,7 @@ public class Spell extends StackObjImpl implements Card {
@Override @Override
public void setZone(Zone zone, Game game) { public void setZone(Zone zone, Game game) {
card.setZone(zone, game); card.setZone(zone, game);
game.getState().setZone(this.getId(), Zone.STACK); game.getState().setZone(this.getId(), zone);
} }
@Override @Override

View file

@ -1271,7 +1271,7 @@ public final class CardUtil {
} }
/** /**
* Find mapping from original to copied card (e.g. map left side with copied left side, etc) * Find mapping from original to copied card (e.g. map original left side with copied left side)
* *
* @param originalCard * @param originalCard
* @param copiedCard * @param copiedCard