diff options
-rw-r--r-- | technic/tools/chainsaw.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/technic/tools/chainsaw.lua b/technic/tools/chainsaw.lua index 4ae9c97..6008500 100644 --- a/technic/tools/chainsaw.lua +++ b/technic/tools/chainsaw.lua @@ -196,7 +196,7 @@ end local S = technic.getter technic.register_power_tool("technic:chainsaw", chainsaw_max_charge) -technic.register_power_tool("technic:chainsaw_mk2", chainsaw_max_charge*5) +technic.register_power_tool("technic:chainsaw_mk2", chainsaw_max_charge*4) -- Table for saving what was sawed down local produced = {} @@ -497,8 +497,8 @@ minetest.register_craft({ output = "technic:chainsaw_mk2", recipe = { {"technic:chainsaw", "technic:stainless_steel_ingot", "technic:stainless_steel_ingot"}, - {"technic:red_energy_crystal", "", ""}, - {"dye:green", "", ""}, + {"technic:battery", "technic:battery", ""}, + {"technic:battery", "", ""}, } }) |