From c7959587cbe4af5e07da965dfabc3b33c9191d00 Mon Sep 17 00:00:00 2001 From: Ahmed Charles Date: Sun, 15 Feb 2015 17:46:25 -0800 Subject: [PATCH] Update channel handlers when creating a channel. --- evennia/commands/default/comms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/evennia/commands/default/comms.py b/evennia/commands/default/comms.py index dc3ba69873..5d7e3afef8 100644 --- a/evennia/commands/default/comms.py +++ b/evennia/commands/default/comms.py @@ -533,6 +533,7 @@ class CmdChannelCreate(MuxPlayerCommand): description, locks=lockstring) new_chan.connect(caller) + CHANNELHANDLER.update() self.msg("Created channel %s and connected to it." % new_chan.key)