mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Small bugfixes in the wake of the cmdset changes. Resolves issue 148.
This commit is contained in:
parent
9d80284504
commit
75956de7d1
3 changed files with 8 additions and 3 deletions
|
|
@ -288,10 +288,10 @@ class CmdSetHandler(object):
|
|||
if cmdset:
|
||||
if self.cmdset_stack:
|
||||
self.cmdset_stack[0] = cmdset
|
||||
self.mergetype_stack.insert[0] = cmdset.mergetype
|
||||
self.mergetype_stack[0] = cmdset.mergetype
|
||||
else:
|
||||
self.cmdset_stack = [cmdset]
|
||||
self.mergetype_stack = cmdset.mergetype
|
||||
self.mergetype_stack = [cmdset.mergetype]
|
||||
|
||||
if permanent:
|
||||
if self.permanent_paths:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue