This is dangerous, apparently

This commit is contained in:
Agent X 2024-06-29 16:39:27 -04:00
parent 39fb039555
commit 4967c911cc
2 changed files with 0 additions and 6 deletions

View file

@ -87,10 +87,6 @@ gServerSettings = {}
--- Struct containing the settings for Nametags --- Struct containing the settings for Nametags
gNametagsSettings = {} gNametagsSettings = {}
--- @type Area
--- Struct containing the current area
gCurrentArea = {}
--- @type Camera --- @type Camera
--- Struct contaning camera fields --- Struct contaning camera fields
--- - This camera is the same as `gMarioStates[i].area.camera` or `gCurrentArea.camera` --- - This camera is the same as `gMarioStates[i].area.camera` or `gCurrentArea.camera`

View file

@ -641,8 +641,6 @@ void smlua_cobject_init_globals(void) {
EXPOSE_GLOBAL(LOT_NAMETAGSSETTINGS, gNametagsSettings); EXPOSE_GLOBAL(LOT_NAMETAGSSETTINGS, gNametagsSettings);
EXPOSE_GLOBAL(LOT_AREA, gCurrentArea);
EXPOSE_GLOBAL(LOT_CAMERA, gCamera); EXPOSE_GLOBAL(LOT_CAMERA, gCamera);
} }