mirror of
https://github.com/minetest/minetest_game.git
synced 2024-10-31 23:30:31 +01:00
59da46c80b
--------- Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com> Co-authored-by: sfan5 <sfan5@live.de>
32 lines
729 B
Lua
32 lines
729 B
Lua
unused_args = false
|
|
allow_defined_top = true
|
|
|
|
globals = {
|
|
"default"
|
|
}
|
|
|
|
read_globals = {
|
|
"DIR_DELIM",
|
|
"minetest",
|
|
"dump",
|
|
"vector",
|
|
"VoxelManip", "VoxelArea",
|
|
"PseudoRandom", "PcgRandom",
|
|
"ItemStack",
|
|
"Settings",
|
|
"unpack",
|
|
-- Silence errors about custom table methods.
|
|
table = { fields = { "copy", "indexof" } },
|
|
-- Silence warnings about accessing undefined fields of global 'math'
|
|
math = { fields = { "sign" } }
|
|
}
|
|
|
|
-- Overwrites minetest.handle_node_drops
|
|
files["mods/creative/init.lua"].globals = { "minetest" }
|
|
|
|
-- Overwrites minetest.calculate_knockback
|
|
files["mods/player_api/api.lua"].globals = { "minetest" }
|
|
|
|
-- Don't report on legacy definitions of globals.
|
|
files["mods/default/legacy.lua"].global = false
|