We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 084d041 commit 5bc3a4dCopy full SHA for 5bc3a4d
1 file changed
Utils/CardUtils.cs
@@ -102,7 +102,8 @@ public static void PrintCardInfo(CardInfo info)
102
Plugin.Log.LogInfo($"IceCubeParams = [{info.iceCubeParams.creatureWithin.name}]");
103
Plugin.Log.LogInfo($"SpecialStatIcon [{info.specialStatIcon}]");
104
Plugin.Log.LogInfo($"One per deck? [{info.onePerDeck}]");
105
- Plugin.Log.LogInfo($"Power Level [{info.PowerLevel}]");
+ // TODO: possible to get an NRE if the power level is not set?
106
+ // Plugin.Log.LogInfo($"Power Level [{info.PowerLevel}]");
107
PrintList("Abilities", info.Abilities);
108
PrintList("Special Abilities", info.SpecialAbilities);
109
PrintList("Appearance Behavior", info.appearanceBehaviour);
0 commit comments