summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data.js2
-rw-r--r--data.ts2
-rw-r--r--play.js2
-rw-r--r--rules.js1
-rw-r--r--rules.ts1
-rw-r--r--types.d.ts1
6 files changed, 6 insertions, 3 deletions
diff --git a/data.js b/data.js
index 3764c25..e7cbecb 100644
--- a/data.js
+++ b/data.js
@@ -1267,7 +1267,7 @@ const data = {
effects: [
create_effect('attack', CLOSEST_TO_DEFEAT, -4, INITIATIVE_PLAYER),
create_effect('attack', CLOSEST_TO_VICTORY, -4, INITIATIVE_PLAYER),
- create_effect('track', COLLECTIVIZATION, -1, INITIATIVE_PLAYER),
+ create_effect('track', LIBERTY, -1, INITIATIVE_PLAYER),
],
test: {
front: MADRID,
diff --git a/data.ts b/data.ts
index 1a2d6c9..3e7e159 100644
--- a/data.ts
+++ b/data.ts
@@ -1305,7 +1305,7 @@ const data: StaticData = {
effects: [
create_effect('attack', CLOSEST_TO_DEFEAT, -4, INITIATIVE_PLAYER),
create_effect('attack', CLOSEST_TO_VICTORY, -4, INITIATIVE_PLAYER),
- create_effect('track', COLLECTIVIZATION, -1, INITIATIVE_PLAYER),
+ create_effect('track', LIBERTY, -1, INITIATIVE_PLAYER),
],
test: {
front: MADRID,
diff --git a/play.js b/play.js
index a7d8ce7..751170a 100644
--- a/play.js
+++ b/play.js
@@ -496,7 +496,7 @@ function on_update() { // eslint-disable-line no-unused-vars
ui.trash.replaceChildren()
place_cards(ui.trash, view.trash)
- if (view.actions && view.actions.trash)
+ if (view.show_trash)
ui.trash_panel.classList.remove("hide")
else
ui.trash_panel.classList.toggle("hide", trash_toggle)
diff --git a/rules.js b/rules.js
index a3cdfb2..046a003 100644
--- a/rules.js
+++ b/rules.js
@@ -1818,6 +1818,7 @@ states.return_card = {
const faction = get_active_faction();
gen_spend_hero_points();
view.prompt = 'Return a card to your hand.';
+ view.show_trash = true;
let possible = false;
for (let c of game.trash[faction]) {
if (c !== game.played_card) {
diff --git a/rules.ts b/rules.ts
index 17f8a46..2727d4b 100644
--- a/rules.ts
+++ b/rules.ts
@@ -2214,6 +2214,7 @@ states.return_card = {
const faction = get_active_faction();
gen_spend_hero_points();
view.prompt = 'Return a card to your hand.';
+ view.show_trash = true;
let possible = false;
for (let c of game.trash[faction]) {
if (c !== game.played_card) {
diff --git a/types.d.ts b/types.d.ts
index 0b901d5..6740ba8 100644
--- a/types.d.ts
+++ b/types.d.ts
@@ -121,6 +121,7 @@ export interface View {
used_medallions: Game['used_medallions'];
year: number;
fascist?: number;
+ show_trash?: boolean;
}
export type States = {