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) ```