From 65328e94ffd97b8c76376a698cf654f2bbff128a Mon Sep 17 00:00:00 2001 From: Kelketek Date: Sat, 18 May 2013 19:30:47 -0500 Subject: [PATCH] Fixed issue with OOC command sending the menu to all connected sessions of a player. --- src/commands/default/player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/default/player.py b/src/commands/default/player.py index aa7e303fe8..29ea69c33c 100644 --- a/src/commands/default/player.py +++ b/src/commands/default/player.py @@ -297,7 +297,7 @@ class CmdOOC(MuxPlayerCommand): # disconnect if player.unpuppet_object(sessid): self.msg("\n{GYou go OOC.{n\n") - player.execute_cmd("look") + player.execute_cmd("look", sessid=sessid) else: raise RuntimeError("Could not unpuppet!")