1) Fixed delayed chat messages 2) mod:is_togglable() 3) Keybind action "toggle_mod" -> "toggle_mod_state" 4) mod:persistent_table("name") 5) Removed "enable" and "disable" methods 6) Now all mod data is stored in mod._data 7) New way of initialization mod and initialization data 8) Mutators will be run after reload (also note init_state) 9) Removed table.lua 10) Lots of small changes and fixes
27 lines
No EOL
486 B
Text
27 lines
No EOL
486 B
Text
mod = [
|
|
"vmf"
|
|
]
|
|
|
|
package = [
|
|
"resource_packages/vmf"
|
|
]
|
|
|
|
material = [
|
|
"materials/vmf/*"
|
|
]
|
|
|
|
lua = [
|
|
"localization/*"
|
|
|
|
"scripts/mods/vmf/*"
|
|
"scripts/mods/vmf/modules/*"
|
|
"scripts/mods/vmf/modules/core/*"
|
|
"scripts/mods/vmf/modules/debug/*"
|
|
"scripts/mods/vmf/modules/gui/*"
|
|
"scripts/mods/vmf/modules/ui/options/*"
|
|
"scripts/mods/vmf/modules/ui/chat/*"
|
|
"scripts/mods/vmf/modules/ui/mutators/*"
|
|
"scripts/mods/vmf/modules/ui/mutators/test/*"
|
|
|
|
"materials/vmf/vmf_atlas"
|
|
] |