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 #708).
This commit is contained in:
parent
0cda1f7731
commit
3a2d78310b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue