mirror of
https://github.com/evennia/evennia.git
synced 2026-03-17 05:16:31 +01:00
Resolved issue99, which concerned commands on adjacent players being erroneously included among a player's available commands (giving multiple-command errors).
This commit is contained in:
parent
35bb9444a1
commit
e2f92f0bfe
3 changed files with 6 additions and 13 deletions
|
|
@ -53,7 +53,7 @@ class Object(TypeClass):
|
|||
if create_cmdset:
|
||||
dbobj.cmdset = CmdSetHandler(dbobj)
|
||||
if dbobj.player:
|
||||
dbobj.cmdset.outside_access = False
|
||||
dbobj.cmdset.outside_access = False
|
||||
if create_scripts:
|
||||
dbobj.scripts = ScriptHandler(dbobj)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue