diff options
-rw-r--r-- | src/game.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -285,6 +285,7 @@ static inline int NextPlayer() { //Make next player draw 5 void AceOfSpadesEffect() { + puts("Here!"); for (int i = 0; i < 5; i++) Deal(NextPlayer()); NextTurn(); } @@ -302,7 +303,9 @@ void FiveEffect() { } void CardEffect(Card* c) { + puts("HereToo!"); if (c->suite == SPADE && c->face == 0) { + puts("TeeHeee!"); c->afterMove = AceOfSpadesEffect; } @@ -326,6 +329,7 @@ void HandleMousePress() { if (MouseOn(c) && CanPlayCard(c)) { if(IsSpecialCard(c)) { + puts("Shloobolo"); CardEffect(c); } else { |