1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

* Rings of Brighthearth - Fixed that it triggered on every ability, not only your own (fixes ).

This commit is contained in:
LevelX2 2015-02-08 13:59:31 +01:00
parent 0cda1f7731
commit 3a2d78310b

View file

@ -87,7 +87,7 @@ class RingsOfBrighthearthTriggeredAbility extends TriggeredAbilityImpl {
@Override
public boolean checkTrigger(GameEvent event, Game game) {
if (event.getType() == EventType.ACTIVATED_ABILITY) {
if (event.getType() == EventType.ACTIVATED_ABILITY && event.getPlayerId().equals(getControllerId())) {
StackAbility stackAbility = (StackAbility) game.getStack().getStackObject(event.getSourceId());
if (!(stackAbility.getStackAbility() instanceof ManaAbility)) {
Effect effect = this.getEffects().get(0);