diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2014-11-24 11:26:32 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2015-02-05 02:09:26 -0500 |
commit | 30c28d882fd9063e00e36c30c798ceadbe6ac206 (patch) | |
tree | 7b41193d7c9bfe02a3fc713c8ce067083246a0ab | |
parent | 78782c9b2bf75938cbbe0112ffe729cb1c470425 (diff) |
adjust wield scale of hydroturbine, give it proper inv img
-rw-r--r-- | mesecons_hydroturbine/init.lua | 4 | ||||
-rw-r--r-- | mesecons_hydroturbine/textures/jeija_hydro_turbine_inv.png | bin | 0 -> 4884 bytes |
2 files changed, 4 insertions, 0 deletions
diff --git a/mesecons_hydroturbine/init.lua b/mesecons_hydroturbine/init.lua index b1343c7..2eb1a64 100644 --- a/mesecons_hydroturbine/init.lua +++ b/mesecons_hydroturbine/init.lua @@ -7,6 +7,8 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", { drawtype = "mesh", mesh = "jeija_hydro_turbine.obj", tiles = {"jeija_hydro_turbine_off.png"}, + inventory_image = "jeija_hydro_turbine_inv.png", + wield_scale = {x=0.75, y=0.75, z=0.75}, groups = {dig_immediate=2}, description="Water Turbine", paramtype = "light", @@ -23,7 +25,9 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", { minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", { drawtype = "mesh", mesh = "jeija_hydro_turbine.obj", + wield_scale = {x=0.75, y=0.75, z=0.75}, tiles = {"jeija_hydro_turbine_on.png"}, + inventory_image = "jeija_hydro_turbine_inv.png", drop = "mesecons_hydroturbine:hydro_turbine_off 1", groups = {dig_immediate=2,not_in_creative_inventory=1}, description="Water Turbine", diff --git a/mesecons_hydroturbine/textures/jeija_hydro_turbine_inv.png b/mesecons_hydroturbine/textures/jeija_hydro_turbine_inv.png Binary files differnew file mode 100644 index 0000000..4cc9f20 --- /dev/null +++ b/mesecons_hydroturbine/textures/jeija_hydro_turbine_inv.png |