From 4528e26e03d4dafac0e9443ac20ffae64958e9de Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 2 Sep 2010 11:50:45 +0000 Subject: [PATCH] Fixed a minor batchcommand reload bug. --- game/gamesrc/commands/default/batchprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/gamesrc/commands/default/batchprocess.py b/game/gamesrc/commands/default/batchprocess.py index d5722f586e..6a96708ae4 100644 --- a/game/gamesrc/commands/default/batchprocess.py +++ b/game/gamesrc/commands/default/batchprocess.py @@ -386,7 +386,7 @@ class CmdStateRR(MuxCommand): if caller.ndb.batch_batchmode == "batch_code": BATCHCODE.read_file(caller.ndb.batch_pythonpath) else: - BATHCMD.read_file(caller.ndb.batch_pythonpath) + BATCHCMD.read_file(caller.ndb.batch_pythonpath) caller.msg(format_code("File reloaded. Staying on same command.")) show_curr(caller)