mirror of
https://codeberg.org/tenplus1/bonemeal.git
synced 2024-11-13 19:50:16 +01:00
updated to newer 0.4.16 functions
This commit is contained in:
parent
f7e56eebb0
commit
e630074a9f
|
@ -22,8 +22,9 @@ Changelog:
|
|||
|
||||
- 0.1 - Initial release
|
||||
- 0.2 - Added global on_use function for bonemeal growth
|
||||
- 0.3 - Added strength to on_use global for new items (mulch and fertiliser).
|
||||
- 0.3 - Added strength to on_use global for new items (mulch and fertiliser)
|
||||
- 0.4 - Added Intllib support and fr.txt file
|
||||
- 0.5 - Added support for default bush and acacia bush saplings
|
||||
- 0.6 - Using newer functions, Minetest 0.4.16 and above needed to run
|
||||
|
||||
Lucky Blocks: 2
|
||||
|
|
13
init.lua
13
init.lua
|
@ -6,6 +6,13 @@ local MP = minetest.get_modpath(minetest.get_current_modname())
|
|||
local S, NS = dofile(MP .. "/intllib.lua")
|
||||
|
||||
|
||||
-- creative check
|
||||
local creative_mode_cache = minetest.settings:get_bool("creative_mode")
|
||||
function is_creative(name)
|
||||
return creative_mode_cache or minetest.check_player_privs(name, {creative = true})
|
||||
end
|
||||
|
||||
|
||||
-- default crops
|
||||
local crops = {
|
||||
{"farming:cotton_", 8, "farming:seed_cotton"},
|
||||
|
@ -347,7 +354,7 @@ minetest.register_craftitem("bonemeal:mulch", {
|
|||
end
|
||||
|
||||
-- take item if not in creative
|
||||
if not minetest.setting_getbool("creative_mode") then
|
||||
if not is_creative(user:get_player_name()) then
|
||||
itemstack:take_item()
|
||||
end
|
||||
|
||||
|
@ -376,7 +383,7 @@ minetest.register_craftitem("bonemeal:bonemeal", {
|
|||
end
|
||||
|
||||
-- take item if not in creative
|
||||
if not minetest.setting_getbool("creative_mode") then
|
||||
if not is_creative(user:get_player_name()) then
|
||||
itemstack:take_item()
|
||||
end
|
||||
|
||||
|
@ -406,7 +413,7 @@ minetest.register_craftitem("bonemeal:fertiliser", {
|
|||
end
|
||||
|
||||
-- take item if not in creative
|
||||
if not minetest.setting_getbool("creative_mode") then
|
||||
if not is_creative(user:get_player_name()) then
|
||||
itemstack:take_item()
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user