remove gL check

This commit is contained in:
Latapostrophe 2018-10-30 22:29:28 +01:00
parent a0495142df
commit 799d8d2749
1 changed files with 1 additions and 1 deletions

View File

@ -614,7 +614,7 @@ static int lib_hudenabled(lua_State *L)
{
enum hud option = luaL_checkoption(L, 1, NULL, hud_disable_options);
lua_settop(L, 2);
if (!gL || hud_enabled[option/8] & (1<<(option%8)))
if (hud_enabled[option/8] & (1<<(option%8)))
lua_pushboolean(L, true);
else
lua_pushboolean(L, false);