diff options
author | Maciej Kasatkin <mk@realbadangel.pl> | 2012-09-12 09:15:04 +0200 |
---|---|---|
committer | Maciej Kasatkin <mk@realbadangel.pl> | 2012-09-12 09:15:04 +0200 |
commit | 14506c477ac69150fd37c80e1571e80fc0ce34fc (patch) | |
tree | aeec58aca1e34b9525aac047b292ccccf7af182e /sonic_screwdriver.lua | |
parent | 50bf1039b837414e92fcd4e55f89203bff1f503b (diff) |
Some fixes to sonic screwdriver and gold chests
Diffstat (limited to 'sonic_screwdriver.lua')
-rw-r--r-- | sonic_screwdriver.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonic_screwdriver.lua b/sonic_screwdriver.lua index f4e3913..07aa9b4 100644 --- a/sonic_screwdriver.lua +++ b/sonic_screwdriver.lua @@ -15,7 +15,7 @@ sonic_screwdriver_max_charge=15000 if charge ==0 then charge =65535 end charge=get_RE_item_load(charge,sonic_screwdriver_max_charge) if charge-100>0 then - minetest.sound_play("technic_sonic_screwdriver", {pos = pos, gain = 1.0, max_hear_distance = 10,}) + minetest.sound_play("technic_sonic_screwdriver", {pos = pos, gain = 0.5, max_hear_distance = 10,}) local n = node.param2 n = n+1 if n == 4 then n = 0 end @@ -40,8 +40,8 @@ sonic_screwdriver_max_charge=15000 minetest.register_craft({ output = "technic:sonic_screwdriver", recipe = { - {"technic:green_energy_crystal"}, - {"technic:stainless_steel_ingot"}, + {"technic:diamond"}, + {"technic:battery"}, {"technic:stainless_steel_ingot"} } }) |