From 1783227c10040d8935e623cfc71658f577577c47 Mon Sep 17 00:00:00 2001 From: Knose Date: Sat, 31 Jul 2021 13:57:03 +0200 Subject: [PATCH] Add tarot cards keywords, empty for now --- Classes/TarotDeck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/TarotDeck.cs b/Classes/TarotDeck.cs index fbd6833..cb3bd29 100644 --- a/Classes/TarotDeck.cs +++ b/Classes/TarotDeck.cs @@ -31,7 +31,7 @@ public TarotCard RequeueCard() { public void PrintDeck(){ foreach(TarotCard card in this._deck){ - Console.WriteLine(card.ToString()); + Console.WriteLine(card.GetName()); } }