forked from MineClone5/MineClone5
Breaking range parity with Minecraft: Java Edition
This commit is contained in:
parent
30ab997358
commit
8a7db3de9a
|
@ -25,11 +25,11 @@ local groupcaps, hand_range, hand_groups
|
||||||
if minetest.is_creative_enabled("") then
|
if minetest.is_creative_enabled("") then
|
||||||
-- Instant breaking in creative mode
|
-- Instant breaking in creative mode
|
||||||
groupcaps = { creative_breakable = { times = {0}, uses = 0 } }
|
groupcaps = { creative_breakable = { times = {0}, uses = 0 } }
|
||||||
hand_range = 10
|
hand_range = 5
|
||||||
hand_groups = { dig_speed_class = 7 }
|
hand_groups = { dig_speed_class = 7 }
|
||||||
else
|
else
|
||||||
groupcaps = {}
|
groupcaps = {}
|
||||||
hand_range = 4
|
hand_range = 4.5
|
||||||
hand_groups = { dig_speed_class = 1 }
|
hand_groups = { dig_speed_class = 1 }
|
||||||
end
|
end
|
||||||
minetest.register_tool(":", {
|
minetest.register_tool(":", {
|
||||||
|
|
Loading…
Reference in New Issue