From 720b843d61c4a101564bdf783ea3bb213140b3a4 Mon Sep 17 00:00:00 2001 From: Wendy Wang Date: Tue, 25 Apr 2023 13:03:20 +0200 Subject: [PATCH] Typo fix for doc issue #3172 https://github.com/evennia/evennia/issues/3172 --- docs/source/Howtos/Tutorial-NPC-Merchants.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/Howtos/Tutorial-NPC-Merchants.md b/docs/source/Howtos/Tutorial-NPC-Merchants.md index 89b8d033cf..3c27841a75 100644 --- a/docs/source/Howtos/Tutorial-NPC-Merchants.md +++ b/docs/source/Howtos/Tutorial-NPC-Merchants.md @@ -54,7 +54,7 @@ class NPCMerchant(Object): def open_shop(self, shopper): menunodes = {} # TODO! shopname = self.db.shopname or "The shop" - EvMenu(shopper, menunodes, startnode="shop_start", + EvMenu(shopper, menunodes, startnode="shopfront", shopname=shopname, shopkeeper=self, wares=self.contents) ``` @@ -215,7 +215,7 @@ class NPCMerchant(Object): "inspect_and_buy": node_inspect_and_buy } shopname = self.db.shopname or "The shop" - EvMenu(shopper, menunodes, startnode="shop_start", + EvMenu(shopper, menunodes, startnode="shopfront", shopname=shopname, shopkeeper=self, wares=self.contents) ```