From 22c4718faf74f86eeea076a77150684d92a00a34 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 15 Apr 2023 17:30:08 -0700 Subject: [PATCH] Include the Number in the smoke test display. --- smoketest/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/smoketest/main.go b/smoketest/main.go index ecc3fed..a59ffe1 100644 --- a/smoketest/main.go +++ b/smoketest/main.go @@ -70,6 +70,7 @@ func (prompt) Info(p *cardsim.Player[*SmokeTestCollection]) ([]cardsim.Message, return []cardsim.Message{ cardsim.MsgStr("Here, have some stuff."), cardsim.Msgf("It's turn %d according to the player and turn %d according to me.", p.TurnNumber, p.Stats.Turns.Value), + cardsim.Msgf("The current Number is %d. It tastes like %s.", p.Stats.Number.Value, p.Stats.Flavor.Value), }, nil }