forked from mtcontrib/minetest_hudbars
Add support for ethereal and push to 1.3.3
This commit is contained in:
parent
078c621ace
commit
36a1b23490
|
@ -1,6 +1,6 @@
|
||||||
Minetest mod "Better HUD"
|
Minetest mod "Better HUD"
|
||||||
=========================
|
=========================
|
||||||
Version: 1.3.2
|
Version: 1.3.3
|
||||||
|
|
||||||
License of source code: WTFPL
|
License of source code: WTFPL
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
|
@ -74,4 +74,9 @@
|
||||||
-----
|
-----
|
||||||
- Fix dependecies (by Chris Beelby)
|
- Fix dependecies (by Chris Beelby)
|
||||||
- Add support for creatures mod
|
- Add support for creatures mod
|
||||||
- Add optional healing for food (by TenPlus1)
|
- Add optional healing for food (by TenPlus1)
|
||||||
|
|
||||||
|
1.3.3
|
||||||
|
-----
|
||||||
|
- Prevent crash with armor mod and missing player
|
||||||
|
- Add support for ethereal mod (by TenPlus1)
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
default
|
default
|
||||||
animalmaterials?
|
animalmaterials?
|
||||||
|
bucket?
|
||||||
bushes?
|
bushes?
|
||||||
bushes_classic?
|
bushes_classic?
|
||||||
creatures?
|
creatures?
|
||||||
docfarming?
|
docfarming?
|
||||||
dwarves?
|
dwarves?
|
||||||
|
ethereal?
|
||||||
farming?
|
farming?
|
||||||
farming_plus?
|
farming_plus?
|
||||||
fishing?
|
fishing?
|
||||||
|
|
25
hunger.lua
25
hunger.lua
|
@ -234,3 +234,28 @@ if minetest.get_modpath("creatures") ~= nil then
|
||||||
overwrite("creatures:flesh", 3)
|
overwrite("creatures:flesh", 3)
|
||||||
overwrite("creatures:rotten_flesh", 3, "", 3)
|
overwrite("creatures:rotten_flesh", 3, "", 3)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if minetest.get_modpath("ethereal") then
|
||||||
|
overwrite("ethereal:strawberry", 1)
|
||||||
|
overwrite("ethereal:banana", 4)
|
||||||
|
overwrite("ethereal:pine_nuts", 1)
|
||||||
|
overwrite("ethereal:bamboo_sprout", 0, "", 3)
|
||||||
|
overwrite("ethereal:fern_tubers", 1)
|
||||||
|
overwrite("ethereal:banana_bread", 7)
|
||||||
|
overwrite("ethereal:mushroom_plant", 2)
|
||||||
|
overwrite("ethereal:coconut_slice", 2)
|
||||||
|
overwrite("ethereal:golden_apple", 4, "", nil, 10)
|
||||||
|
overwrite("ethereal:wild_onion_plant", 2)
|
||||||
|
overwrite("ethereal:mushroom_soup", 4, "ethereal:bowl")
|
||||||
|
overwrite("ethereal:mushroom_soup_cooked", 6, "ethereal:bowl")
|
||||||
|
overwrite("ethereal:hearty_stew", 6, "ethereal:bowl", 3)
|
||||||
|
overwrite("ethereal:hearty_stew_cooked", 10, "ethereal:bowl")
|
||||||
|
if minetest.get_modpath("bucket") then
|
||||||
|
overwrite("ethereal:bucket_cactus", 2, "bucket:bucket_empty")
|
||||||
|
end
|
||||||
|
overwrite("ethereal:fish_raw", 2)
|
||||||
|
overwrite("ethereal:fish_cooked", 5)
|
||||||
|
overwrite("ethereal:seaweed", 1)
|
||||||
|
overwrite("ethereal:yellowleaves", 1, "", nil, 1)
|
||||||
|
overwrite("ethereal:sashimi", 4)
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user