mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 13:37:17 +02:00
Fixed a bug in batchcommand that caused crashes. Resolves issue 153.
This commit is contained in:
parent
6c53ec2bdb
commit
c81d238b0c
2 changed files with 6 additions and 17 deletions
|
|
@ -367,7 +367,7 @@ class CmdSetHandler(object):
|
|||
"""
|
||||
self.cmdset_stack = [self.cmdset_stack[0]]
|
||||
self.mergetype_stack = [self.cmdset_stack[0].mergetype]
|
||||
self.permanent_paths[0] = [self.permanent_paths[0]]
|
||||
self.permanent_paths = [self.permanent_paths[0]]
|
||||
self.obj.cmdset_storage = self.permanent_paths
|
||||
self.update()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue