1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-26 18:23:49 +00:00
Aquaria/files/scripts/compat/legacy-strict.lua

15 lines
576 B
Lua
Raw Normal View History

-- Same compatibility wrapper as "legacy",
-- but in addition removes all functions added after the last commercial release (1.1.1)
-- If your scripts run in this mode it's very likely that they will work
-- in the Steam/GOG/Humble/Ambrosia/... version.
dofile("scripts/compat/legacy.lua")
dofile("scripts/compat/internal/addquirks.lua")
dofile("scripts/compat/internal/removenewfunctions.lua")
-- v1.1 does not expose the debug library
debug = nil
-- This MUST NOT be removed. Core scripts depend on this, and mods are likely to use some of those.
--AQUARIA_VERSION = nil