Update README.md

master
daretmavi 2021-01-15 19:37:05 +00:00
parent 741adc67fe
commit f4562694bd
1 changed files with 55 additions and 2 deletions

View File

@ -56,7 +56,7 @@ Minetest: https://www.minetest.net/
![Image](screenshot_bucket_recipe_clasic.png)
**bucket_use_clasic_recipe = true**
`bucket_use_clasic_recipe = true`
- can conflict with other mods, like farming:Wooden Bowl - "Wood Empty Bucket" = "Wooden Bowl"
@ -64,7 +64,60 @@ Minetest: https://www.minetest.net/
![Image](screenshot_bucket_recipe_new.png)
**bucket_use_clasic_recipe = false**
`bucket_use_clasic_recipe = false`
## Other Settings
**How far will water from bucket flow**
`bucket_water_flowing_range (Bucket water flowing range) int 1`
**How far will lava from bucket flow**
`bucket_lava_flowing_range (Bucket lava flowing range) int 1`
**Get liquid from flowing liquid**
`bucket_get_flowing (Flowing liwuid can be taken) bool true`
- If true, then liquid can be taken even from flowing one
- not only from source
**Default bucket type**
`bucket_default_type (Bucket default type) enum steel steel,wood,stone,bronze,mese,diamond,gold`
- do not disable defined type, or you get nothing with /giveme bucket
### Enabled buckettypes
**Enable steel bucket**
`bucket_material_steel (Enable steel bucket) bool true`
**Enable wood bucket**
`bucket_material_wood (Enable wood bucket) bool true`
**Enable stone bucket**
`bucket_material_stone (Enable stone bucket) bool true`
**Enable bronze bucket**
`bucket_material_bronze (Enable bronze bucket) bool true`
**Enable mese bucket**
`bucket_material_mese (Enable mese bucket) bool true`
**Enable diamond bucket**
`bucket_material_diamond (Enable diamond bucket) bool true`
**Enable gold bucket**
`bucket_material_gold (Enable gold bucket) bool true`
-----