mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
fixed Firesong and Sunspeaker only triggering for mono-white spells (#4836)
This commit is contained in:
parent
ec90f35e0f
commit
8cbb4d9df7
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ class FiresongAndSunspeakerTriggeredAbility extends TriggeredAbilityImpl {
|
|||
public boolean checkTrigger(GameEvent event, Game game) {
|
||||
MageObject object = game.getObject(event.getSourceId());
|
||||
if (object != null && object instanceof Spell) {
|
||||
if (object.getColor(game).equals(ObjectColor.WHITE)
|
||||
if (object.getColor(game).contains(ObjectColor.WHITE)
|
||||
&& (object.isInstant()
|
||||
|| object.isSorcery())) {
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue