-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create CardChoicePatchGetSourceCard.cs (#85)
- Loading branch information
1 parent
2635537
commit 8d2728e
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using HarmonyLib; | ||
|
||
namespace UnboundLib.Patches | ||
{ | ||
[HarmonyPatch(typeof(CardChoice))] | ||
public class CardChoicePatchGetSourceCard | ||
{ | ||
[HarmonyPrefix] | ||
[HarmonyPatch(nameof(CardChoice.GetSourceCard))] | ||
private static bool CheckHiddenCards(CardChoice __instance, CardInfo info, ref CardInfo __result) | ||
{ | ||
for (int i = 0; i < __instance.cards.Length; i++) | ||
{ | ||
if ((__instance.cards[i].gameObject.name + "(Clone)") == info.gameObject.name) | ||
{ | ||
__result = __instance.cards[i]; | ||
break; | ||
} | ||
} | ||
__result = null; | ||
|
||
return false; | ||
} | ||
} | ||
} |