c412c6058b
* Classes Rework * Add ctf_settings * Auto-start respawn timer * cooldowns: provide cooldown start time * Allow squinting with zoom * Restore old scout ability, allow sniper ADS * Knight combat rework rework rework * Fix luacheck warnings * Change classes build timer to a minute * Default to default wielditem display * Update class desc * Fix crash and tweak restart message * Fix potential issue * Undo failure of a crash fix * Fix crash * Fix potential issues * Fix crash? * Roughly restore old knight sword behaviour
70 lines
1.2 KiB
Lua
70 lines
1.2 KiB
Lua
unused_args = false
|
|
|
|
globals = {
|
|
"PlayerObj", "PlayerName", "HumanReadable", "RunCallbacks",
|
|
|
|
"ctf_gui", "hud_events", "mhud", "physics", "rawf", "ctf_settings",
|
|
|
|
"ctf_api", "ctf_chat", "ctf_combat_mode", "ctf_core", "ctf_cosmetics",
|
|
"ctf_healing", "ctf_kill_list", "ctf_map", "ctf_melee", "ctf_modebase",
|
|
"ctf_ranged", "ctf_rankings", "ctf_report", "ctf_teams", "ctf_player",
|
|
|
|
"dropondie", "grenades",
|
|
|
|
"chatcmdbuilder", "crafting", "hpbar", "playertag", "random_messages",
|
|
"skybox", "throwable_snow",
|
|
|
|
"default", "doors", "player_api", "sfinv", "binoculars",
|
|
|
|
"vector",
|
|
math = {
|
|
fields = {
|
|
"round",
|
|
"hypot",
|
|
"sign",
|
|
"factorial",
|
|
"ceil",
|
|
}
|
|
},
|
|
|
|
"minetest", "core",
|
|
}
|
|
|
|
exclude_files = {
|
|
"mods/other/crafting",
|
|
"mods/mtg/mtg_*",
|
|
"mods/other/real_suffocation",
|
|
"mods/other/lib_chatcmdbuilder",
|
|
"mods/other/email",
|
|
"mods/other/select_item",
|
|
}
|
|
|
|
read_globals = {
|
|
"DIR_DELIM",
|
|
"dump", "dump2",
|
|
"VoxelManip", "VoxelArea",
|
|
"PseudoRandom", "PcgRandom",
|
|
"ItemStack",
|
|
"Settings",
|
|
"unpack",
|
|
"loadstring",
|
|
|
|
table = {
|
|
fields = {
|
|
"copy",
|
|
"indexof",
|
|
"insert_all",
|
|
"key_value_swap",
|
|
"shuffle",
|
|
"random",
|
|
}
|
|
},
|
|
|
|
string = {
|
|
fields = {
|
|
"split",
|
|
"trim",
|
|
}
|
|
},
|
|
}
|