Merge pull request #4935 from magefree/rystan-fix-horn

Fix for Herald's Horn's spell reduction
This commit is contained in:
LevelX2 2018-05-15 18:04:24 +02:00 committed by GitHub
commit 049a578f37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,7 +142,7 @@ public class SpellsCostReductionAllEffect extends CostModificationEffectImpl {
@Override
public boolean applies(Ability abilityToModify, Ability source, Game game) {
if (onlyControlled && abilityToModify.getControllerId().equals(source.getControllerId())) {
if (onlyControlled && !abilityToModify.getControllerId().equals(source.getControllerId())) {
return false;
}
if (abilityToModify instanceof SpellAbility) {