forked from VoxeLibre/VoxeLibre
Change Max Empty bucket stack back to 16 but keep Lava and Water max_stack. Reason: Wrong research
This commit is contained in:
parent
f06a56d7c4
commit
834dfcf9af
|
@ -177,7 +177,7 @@ minetest.register_craftitem("mcl_buckets:bucket_empty", {
|
||||||
|
|
||||||
liquids_pointable = true,
|
liquids_pointable = true,
|
||||||
inventory_image = "bucket.png",
|
inventory_image = "bucket.png",
|
||||||
stack_max = 1,
|
stack_max = 16,
|
||||||
on_place = function(itemstack, user, pointed_thing)
|
on_place = function(itemstack, user, pointed_thing)
|
||||||
-- Must be pointing to node
|
-- Must be pointing to node
|
||||||
if pointed_thing.type ~= "node" then
|
if pointed_thing.type ~= "node" then
|
||||||
|
|
Loading…
Reference in New Issue