diff options
author | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-17 15:22:49 +0100 |
---|---|---|
committer | iainp5 <iain.pearce.ip@gmail.com> | 2024-09-17 15:22:49 +0100 |
commit | a05f059637791938c11fb355c55a767ddd630c83 (patch) | |
tree | d8bcd0e4122ffcdcef312886755de7b69aa94f8e /rules.js | |
parent | 8a0f5a059b60879794d9a51d654a68802a2ea877 (diff) | |
download | 1989-dawn-of-freedom-a05f059637791938c11fb355c55a767ddd630c83.tar.gz |
Updates to Goodbye Lenin
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -3600,7 +3600,12 @@ function vm_return() { /* ================== VM ACTIONS =========================== */
-function vm_valid_spaces () {
+function vm_opp_hand_false() {
+ game.view_opp_hand = false
+ vm_next()
+}
+
+function vm_valid_spaces() {
//vm_assert_argcount(6)
let space_1 = vm_operand(1)
let space_2 = vm_operand(2)
@@ -5806,6 +5811,7 @@ states.vm_goodbye_lenin = { goto_vm(card)
},
ops() {
+ log('C46 played for operations')
game.state = 'vm_goodbye_lenin_ops'
}
}
|