mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 16:41:06 +01:00
Changed hand_range to reflect that of Minecraft Java Edition in both creative and survival
This commit is contained in:
parent
dda85ea141
commit
22f6c38c1a
1 changed files with 2 additions and 2 deletions
|
@ -25,11 +25,11 @@ local groupcaps, hand_range, hand_groups
|
|||
if minetest.is_creative_enabled("") then
|
||||
-- Instant breaking in creative mode
|
||||
groupcaps = { creative_breakable = { times = {0}, uses = 0 } }
|
||||
hand_range = 10
|
||||
hand_range = 5
|
||||
hand_groups = { dig_speed_class = 7 }
|
||||
else
|
||||
groupcaps = {}
|
||||
hand_range = 4
|
||||
hand_range = 4.5
|
||||
hand_groups = { dig_speed_class = 1 }
|
||||
end
|
||||
minetest.register_tool(":", {
|
||||
|
|
Loading…
Reference in a new issue