Skip to content

Commit c1e4a35

Browse files
committed
rename main deck parameter
1 parent 50a322d commit c1e4a35

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

NeuroInscryption/Communication/Actions/Combat/DrawCardAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public sealed class DrawCardAction(bool mainDeckEmpty, bool sideDeckEmpty)
1111
public override JsonSchema GetDataSchema()
1212
{
1313
List<string> decks = [];
14-
if (!mainDeckEmpty) decks.Add("Random");
14+
if (!mainDeckEmpty) decks.Add("Main Deck");
1515
if (!sideDeckEmpty) decks.Add("Squirrel");
1616

1717
return new JsonSchema
@@ -31,7 +31,7 @@ protected override bool TryDeserialize(JToken? data, out bool drawFromSideDeck)
3131

3232
switch (strResponse)
3333
{
34-
case "Random":
34+
case "Main Deck":
3535
drawFromSideDeck = mainDeckEmpty;
3636
return true;
3737

0 commit comments

Comments
 (0)