diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | go/game/cardImplementations.go | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -124,3 +124,4 @@ Things that should be done eventually: - [ ] tyrant - [ ] finish error handling for remote PlayerControls - [ ] support big card grids (for sealed) +- [ ] implement replacement effects diff --git a/go/game/cardImplementations.go b/go/game/cardImplementations.go index dcd11808..bfda63ed 100644 --- a/go/game/cardImplementations.go +++ b/go/game/cardImplementations.go @@ -227,6 +227,7 @@ func (i *maceImpl) onUnpile(p Permanent) { type poisonDaggerImpl struct{ cardImplementationBase } func (*poisonDaggerImpl) onPile(p Permanent) { + // FIXME: implement replacement effects } func (*poisonDaggerImpl) onUnpile(p Permanent) { |
