From 56a03367f730462510b39b064dda70579b3c6cb1 Mon Sep 17 00:00:00 2001 From: Ari Mudev Date: Sat, 4 Sep 2010 18:53:52 +0000 Subject: [PATCH] Allow speaking and posing while blind. --- game/gamesrc/commands/examples/cmdset_red_button.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/game/gamesrc/commands/examples/cmdset_red_button.py b/game/gamesrc/commands/examples/cmdset_red_button.py index 2fd466f50c..cf14fb98ed 100644 --- a/game/gamesrc/commands/examples/cmdset_red_button.py +++ b/game/gamesrc/commands/examples/cmdset_red_button.py @@ -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())