Skip to content

Commit

Permalink
Create CardChoicePatchGetSourceCard.cs (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
willuwontu authored Dec 15, 2022
1 parent 2635537 commit 8d2728e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions UnboundLib/Patches/CardChoicePatchGetSourceCard.cs
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;
}
}
}

0 comments on commit 8d2728e

Please sign in to comment.