forked from minetest-mods/moreblocks
Merge branch 'master' of https://github.com/Calinou/moreblocks
This commit is contained in:
commit
2839770413
|
@ -136,7 +136,7 @@ end
|
||||||
-- The amount of items offered per shape can be configured
|
-- The amount of items offered per shape can be configured
|
||||||
circular_saw.on_receive_fields = function(pos, formname, fields, sender)
|
circular_saw.on_receive_fields = function(pos, formname, fields, sender)
|
||||||
local meta = minetest.env:get_meta(pos);
|
local meta = minetest.env:get_meta(pos);
|
||||||
if(fields.max_offered and tonumber(fields.max_offered) > 0 and tonumber(fields.max_offered) < 99) then
|
if tonumber(fields.max_offered) and tonumber(fields.max_offered) > 0 and tonumber(fields.max_offered) < 99 then
|
||||||
meta:set_string("max_offered", fields.max_offered);
|
meta:set_string("max_offered", fields.max_offered);
|
||||||
circular_saw.update_inventory(pos, 0); -- update to show the correct number of items
|
circular_saw.update_inventory(pos, 0); -- update to show the correct number of items
|
||||||
end
|
end
|
||||||
|
|
4
init.lua
4
init.lua
|
@ -22,8 +22,6 @@ dofile(minetest.get_modpath("moreblocks").."/stairsplus/aliases.lua")
|
||||||
dofile(minetest.get_modpath("moreblocks").."/stairsplus.lua")
|
dofile(minetest.get_modpath("moreblocks").."/stairsplus.lua")
|
||||||
dofile(minetest.get_modpath("moreblocks").."/circular_saw.lua")
|
dofile(minetest.get_modpath("moreblocks").."/circular_saw.lua")
|
||||||
|
|
||||||
print(S("[moreblocks] loaded."))
|
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
****
|
****
|
||||||
More Blocks
|
More Blocks
|
||||||
|
@ -356,3 +354,5 @@ minetest.register_craftitem("moreblocks:nothing", {
|
||||||
inventory_image = "invisible.png",
|
inventory_image = "invisible.png",
|
||||||
on_use = minetest.item_eat(0),
|
on_use = minetest.item_eat(0),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
print(S("[moreblocks] loaded."))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user