summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/luaconsole.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/luaconsole.c b/src/luaconsole.c
index 4c76f71..8dce665 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)