diff options
| author | rubenwardy <anjayward@gmail.com> | 2014-04-14 17:17:53 +0100 | 
|---|---|---|
| committer | rubenwardy <anjayward@gmail.com> | 2014-04-14 17:17:53 +0100 | 
| commit | 1da2267ba363f566e84e23f3db7319e2d0ee9951 (patch) | |
| tree | ee67bbdb7ff2451e4349e36ebcd5a8c9ad096fe3 | |
| parent | 7e441a4c699dbe1d74a21567eeb6c4b17587e33a (diff) | |
Add support for ethereal
| -rw-r--r-- | init.lua | 19 | 
1 files changed, 19 insertions, 0 deletions
| @@ -307,3 +307,22 @@ if minetest.get_modpath("mobfcooking") ~= nil then  	overwrite("mobfcooking:cooked_venison", 6)  	overwrite("mobfcooking:cooked_fish", 6)  end + +if minetest.get_modpath("ethereal") ~= nil then +	overwrite("ethereal:strawberry", 1) +	overwrite("ethereal:banana", 2) +	overwrite("ethereal:pine_nuts", 1) +	overwrite("ethereal:fern_tubers", 1) +	overwrite("ethereal:banana_bread", 7) +	overwrite("ethereal:mushroom_plant", 1) +	overwrite("ethereal:coconut_slice", 2) +	overwrite("ethereal:golden_apple", 10) +	overwrite("ethereal:wild_onion_plant", 1) +	overwrite("ethereal:mushroom_soup", 2) +	overwrite("ethereal:mushroom_soup_cooked", 3) +	overwrite("ethereal:hearty_stew", 4) +	overwrite("ethereal:hearty_stew_cooked", 6) +	overwrite("ethereal:bucket_cactus", 2) +	overwrite("ethereal:fish_raw", 2) +	overwrite("ethereal:fish_cooked", 4) +end | 
