mirror of
https://github.com/evennia/evennia.git
synced 2026-04-03 22:47:16 +02:00
Allow speaking and posing while blind.
This commit is contained in:
parent
cfbb249d96
commit
56a03367f7
1 changed files with 4 additions and 0 deletions
|
|
@ -294,5 +294,9 @@ class BlindCmdSet(CmdSet):
|
|||
|
||||
def at_cmdset_creation(self):
|
||||
"Setup the blind cmdset"
|
||||
from game.gamesrc.commands.default.general import CmdSay
|
||||
from game.gamesrc.commands.default.general import CmdPose
|
||||
self.add(CmdSay())
|
||||
self.add(CmdPose())
|
||||
self.add(CmdBlindLook())
|
||||
self.add(CmdBlindHelp())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue