Commit c7439ae7 authored by wind2009's avatar wind2009 Committed by GitHub

Fix dump activate for Unending Nightmare (#133)

parent 34b7eb09
...@@ -230,6 +230,9 @@ namespace WindBot.Game.AI.Decks ...@@ -230,6 +230,9 @@ namespace WindBot.Game.AI.Decks
} }
private bool UnendingNightmareeff() private bool UnendingNightmareeff()
{ {
if (Card.IsDisabled()){
return false;
}
ClientCard card = null; ClientCard card = null;
foreach(ClientCard check in Enemy.GetSpells()) foreach(ClientCard check in Enemy.GetSpells())
{ {
...@@ -724,4 +727,4 @@ namespace WindBot.Game.AI.Decks ...@@ -724,4 +727,4 @@ namespace WindBot.Game.AI.Decks
return true; return true;
} }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment