Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wind2009-Louse committed Dec 1, 2024
1 parent be5184d commit 5d9b552
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Game/AI/DefaultExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1616,6 +1616,12 @@ protected bool DefaultCheckWhetherCardIdIsNegated(int cardId)
|| (calledbytheGraveIdCountMap.ContainsKey(cardId) && calledbytheGraveIdCountMap[cardId] > 0);
}

protected int GetCalledbytheGraveIdCount(int cardId)
{
if (!calledbytheGraveIdCountMap.ContainsKey(cardId)) return 0;
return calledbytheGraveIdCountMap[cardId];
}


protected virtual bool DefaultSetForDiabellze()
{
Expand Down

0 comments on commit 5d9b552

Please sign in to comment.