mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
fix Boseiju
This commit is contained in:
parent
c743906557
commit
67d25f80b6
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class BoseijuWhoSheltersAllWatcher extends Watcher {
|
|||
public void watch(GameEvent event, Game game) {
|
||||
if (event.getType() == GameEvent.EventType.MANA_PAID) {
|
||||
if (event.getData() != null && event.getData().equals(originalId)) {
|
||||
Card spell = game.getCard(event.getTargetId());
|
||||
Card spell = game.getSpell(event.getTargetId());
|
||||
if (spell != null && (spell.isInstant() || spell.isSorcery())) {
|
||||
spells.add(event.getTargetId());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue