From 8dfa09bf6a4a4e30e6e26b6af4eb9b0c275c0d56 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Mon, 1 Aug 2011 10:59:33 +0200 Subject: [PATCH] Edited src/luaconsole.c via GitHub --- src/luaconsole.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/luaconsole.c b/src/luaconsole.c index 4c76f7121..8dce66547 100644 --- a/src/luaconsole.c +++ b/src/luaconsole.c @@ -857,7 +857,10 @@ int luatpt_active_menu(lua_State* l) { int aheatstate; aheatstate = luaL_optint(l, 1, menu_count); - active_menu = aheatstate; + if (aheatstate < SC_TOTAL) + active_menu = aheatstate; + else + return luaL_error(l, "Menu does not exist"); return 0; } int luatpt_decorations_enable(lua_State* l)