diff --git a/koboldsim/cardtypes.go b/koboldsim/cardtypes.go index fedc5e9..8f12d00 100644 --- a/koboldsim/cardtypes.go +++ b/koboldsim/cardtypes.go @@ -156,10 +156,7 @@ func (b *BasicPolicy) Enact(p *Player) (cardsim.Message, error) { } return b.NothingChanged, nil } - if b.Enabled(p) { - return b.Do(p) - } - return nil, ErrOptionNotEnabled + return b.Do(p) } // Unenact implements Policy.