mirror of
https://github.com/HybridDog/builtin_item.git
synced 2024-12-22 17:00:27 +01:00
Remove unused code and file, and add a .luacheckrc
This commit is contained in:
parent
4f85670e78
commit
0f81edd278
12
.luacheckrc
Normal file
12
.luacheckrc
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
read_globals = {
|
||||||
|
minetest = {
|
||||||
|
fields = {
|
||||||
|
registered_entities = {
|
||||||
|
read_only = false,
|
||||||
|
other_fields = true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
other_fields = true
|
||||||
|
},
|
||||||
|
"vector"
|
||||||
|
}
|
@ -1,3 +1,2 @@
|
|||||||
MIT for the code
|
MIT for the code
|
||||||
CC-BY 4.0 for the sound
|
|
||||||
The original mod was licensed under WTFPL.
|
The original mod was licensed under WTFPL.
|
||||||
|
8
init.lua
8
init.lua
@ -1,11 +1,7 @@
|
|||||||
-- Use the movement gravity for the downwards acceleration.
|
-- Use the movement gravity for the downwards acceleration.
|
||||||
-- The setting may change in-game but for simplicity we don't support this.
|
-- The setting may change in-game but for simplicity we don't support this.
|
||||||
local movement_gravity = tonumber(core.settings:get("movement_gravity")) or 9.81
|
local movement_gravity = tonumber(minetest.settings:get("movement_gravity"))
|
||||||
|
or 9.81
|
||||||
local function is_flowing_liquid(nodename)
|
|
||||||
local def = minetest.registered_nodes[nodename]
|
|
||||||
return def and def.liquidtype == "flowing"
|
|
||||||
end
|
|
||||||
|
|
||||||
-- get_flow_raw determines the horizontal flow vector for a flowing liquid node,
|
-- get_flow_raw determines the horizontal flow vector for a flowing liquid node,
|
||||||
-- or returns nothing if the flow is zero
|
-- or returns nothing if the flow is zero
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user