2017-01-21 01:06:44 +00:00
|
|
|
-- Removes more functions than to no-deprecated
|
|
|
|
-- Some original game scripts will not work with this!
|
2022-06-09 00:30:31 +00:00
|
|
|
-- 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)
|
2017-01-21 01:06:44 +00:00
|
|
|
|
|
|
|
dofile("scripts/compat/no-deprecated.lua")
|
|
|
|
|
|
|
|
incrFlag = nil
|
|
|
|
decrFlag = nil
|
|
|
|
entity_sound = nil
|
|
|
|
quit = nil -- mods should not do this ever
|
|
|
|
doModSelect = nil
|
|
|
|
doLoadMenu = nil
|
2017-01-21 02:33:04 +00:00
|
|
|
entity_incrTargetLeaches = nil -- use avatar_incrLeaches() instead
|
|
|
|
entity_decrTargetLeaches = nil -- use avatar_decrLeaches() instead
|
|
|
|
entity_soundFreq = nil
|
2023-05-31 16:10:55 +00:00
|
|
|
|
|
|
|
isPlat = nil -- should not matter on the Lua side what the platform is
|
|
|
|
PLAT_WIN = nil
|
|
|
|
PLAT_MAC = nil
|
|
|
|
PLAT_LNX = nil
|