mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-26 02:03:48 +00:00
fb3d27fcfe
- toggleVersionLabel() - setVersionLabelText() + Implement compat function entity_flipHToAvatar() properly
18 lines
707 B
Lua
18 lines
707 B
Lua
-- Removes more functions than to no-deprecated
|
|
-- Some original game scripts will not work with this!
|
|
-- This is fine to use when developing a mod, but do NOT distribute a mod with this set!
|
|
-- (Consider using "no-deprecated", "default", "none" or simply leave the compat tag away)
|
|
|
|
dofile("scripts/compat/no-deprecated.lua")
|
|
|
|
incrFlag = nil
|
|
decrFlag = nil
|
|
entity_sound = nil
|
|
entity_toggleBone = nil
|
|
isPlat = nil -- should not matter on the Lua side what the platform is
|
|
quit = nil -- mods should not do this ever
|
|
doModSelect = nil
|
|
doLoadMenu = nil
|
|
entity_incrTargetLeaches = nil -- use avatar_incrLeaches() instead
|
|
entity_decrTargetLeaches = nil -- use avatar_decrLeaches() instead
|
|
entity_soundFreq = nil
|