aboutsummaryrefslogtreecommitdiff
path: root/po/fr
diff options
context:
space:
mode:
authorBlockMen <nmuelll@web.de>2014-04-12 17:39:51 +0200
committerBlockMen <nmuelll@web.de>2014-04-12 17:39:51 +0200
commite149d1ad9a623b9f8ca597839f7b850841c54781 (patch)
treeea968bc3e764932732fc6c5df503986c245cc685 /po/fr
parent7cdbb805d9f230b2cf00150884dc3fa4fbcde16f (diff)
downloadminetest-e149d1ad9a623b9f8ca597839f7b850841c54781.tar.gz
minetest-e149d1ad9a623b9f8ca597839f7b850841c54781.tar.bz2
minetest-e149d1ad9a623b9f8ca597839f7b850841c54781.zip
Fix write and read S32 vectors
Diffstat (limited to 'po/fr')
0 files changed, 0 insertions, 0 deletions
' href='#n95'>95
-- bucket (Minetest 0.4 mod)
-- A bucket, which can pick up water and lava

minetest.register_alias("bucket", "bucket:bucket_empty")
minetest.register_alias("bucket_water", "bucket:bucket_water")
minetest.register_alias("bucket_lava", "bucket:bucket_lava")

minetest.register_craft({
	output = 'bucket:bucket_empty 1',
	recipe = {
		{'default:steel_ingot', '', 'default:steel_ingot'},
		{'', 'default:steel_ingot', ''},
	}
})

bucket = {}
bucket.liquids = {}

-- Register a new liquid
--   source = name of the source node
--   flowing = name of the flowing node
--   itemname = name of the new bucket item (or nil if liquid is not takeable)
--   inventory_image = texture of the new bucket item (ignored if itemname == nil)