@gamepark/skyrift 0.6.1 → 0.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,6 @@ export class PrincessLithaEffectRule extends EffectRule {
10
10
  this.memorize(Memory.NextRoundStartPlayer, move.data);
11
11
  return this.endEffect();
12
12
  }
13
- return [];
13
+ return super.onCustomMove(move);
14
14
  }
15
15
  }
@@ -57,7 +57,6 @@ export class PlayCardRule extends PlayerTurnRule {
57
57
  }
58
58
  onCustomMove(move) {
59
59
  if (move.type === CustomMoveType.ConcedeRound) {
60
- this.memorize(Memory.OngoingEffects, []);
61
60
  return [this.startRule(RuleId.EndRound)];
62
61
  }
63
62
  else if (move.type === CustomMoveType.ActivateCard) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamepark/skyrift",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "description": "The rules of SkyRift adapted for Game Park",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -30,5 +30,5 @@
30
30
  "es-toolkit": "^1.43.0",
31
31
  "vitest": "^4.0.15"
32
32
  },
33
- "gitHead": "6e6ef7daf6907094169e477e291183a999746e37"
33
+ "gitHead": "b35c19a68de96ea352f59419f2154730111ed989"
34
34
  }