Don't charge an action point for debug drawing.

This commit is contained in:
Kistaro Windrider 2023-04-15 17:26:02 -07:00
parent 4a91230376
commit deb3b1c5a1
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -157,6 +157,10 @@ func installDebugActions(pa *[]card) {
Output: cardsim.MsgStr("Drawn. Probably."),
},
},
AfterOption: func(c card, p *player, option cardOption) error {
p.ActionsRemaining++
return nil
},
},
}
}