mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Typo fix for doc issue #3172
https://github.com/evennia/evennia/issues/3172
This commit is contained in:
parent
616daf723a
commit
720b843d61
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue