mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00: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…
Reference in a new issue