mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 23:12:10 -08:00
fixed Firesong and Sunspeaker triggering off of other players gaining life (fixes #4933)
This commit is contained in:
parent
ec4bee43d2
commit
505d09b0bb
1 changed files with 2 additions and 1 deletions
|
|
@ -114,7 +114,8 @@ 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).contains(ObjectColor.WHITE)
|
||||
if (event.getTargetId().equals(this.getControllerId())
|
||||
&& object.getColor(game).contains(ObjectColor.WHITE)
|
||||
&& (object.isInstant()
|
||||
|| object.isSorcery())) {
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue