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())