From 62d52888564864fa298bd78177221191ece6f3f5 Mon Sep 17 00:00:00 2001 From: ben_pollard Date: Tue, 30 Jan 2024 22:57:03 +0000 Subject: [PATCH] Added missing instruction to documentation --- docs/docfx/docs/attributes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docfx/docs/attributes.md b/docs/docfx/docs/attributes.md index 8a831cb0..90b51f18 100644 --- a/docs/docfx/docs/attributes.md +++ b/docs/docfx/docs/attributes.md @@ -55,7 +55,7 @@ trader.Conversation = new Conversation( trader.Attributes.Add(currency, 5); trader.Give(spade, player); }, new GoTo(0), "BoughtSpade"), - new Paragraph("You don't have enough money.", "NotEnough"), + new Paragraph("You don't have enough money.", new First(), "NotEnough"), new Paragraph("Fine.") ); ```