diff --git a/autogen/lua_definitions/manual.lua b/autogen/lua_definitions/manual.lua index 26905575..67caa785 100644 --- a/autogen/lua_definitions/manual.lua +++ b/autogen/lua_definitions/manual.lua @@ -87,10 +87,6 @@ gServerSettings = {} --- Struct containing the settings for Nametags gNametagsSettings = {} ---- @type Area ---- Struct containing the current area -gCurrentArea = {} - --- @type Camera --- Struct contaning camera fields --- - This camera is the same as `gMarioStates[i].area.camera` or `gCurrentArea.camera` diff --git a/src/pc/lua/smlua_cobject.c b/src/pc/lua/smlua_cobject.c index dfa66837..e0b64f52 100644 --- a/src/pc/lua/smlua_cobject.c +++ b/src/pc/lua/smlua_cobject.c @@ -641,8 +641,6 @@ void smlua_cobject_init_globals(void) { EXPOSE_GLOBAL(LOT_NAMETAGSSETTINGS, gNametagsSettings); - EXPOSE_GLOBAL(LOT_AREA, gCurrentArea); - EXPOSE_GLOBAL(LOT_CAMERA, gCamera); }