Skip to content

Commit

Permalink
Lua_api.txt: Change 'maxwear' to 'uses' in 'tool_capabilities'
Browse files Browse the repository at this point in the history
'maxwear' has been deprecated for over 3 years
Add spaces around '=' nearby
  • Loading branch information
DonBatman authored and paramat committed Aug 14, 2016
1 parent f21dae6 commit 986d70c
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions doc/lua_api.txt
Expand Up @@ -3472,27 +3472,26 @@ Definition tables

{
description = "Steel Axe",
groups = {}, -- key=name, value=rating; rating=1..3.
groups = {}, -- key = name, value = rating; rating = 1..3.
if rating not applicable, use 1.
e.g. {wool=1, fluffy=3}
{soil=2, outerspace=1, crumbly=1}
{bendy=2, snappy=1},
{hard=1, metal=1, spikes=1}
e.g. {wool = 1, fluffy = 3}
{soil = 2, outerspace = 1, crumbly = 1}
{bendy = 2, snappy = 1},
{hard = 1, metal = 1, spikes = 1}
inventory_image = "default_tool_steelaxe.png",
wield_image = "",
wield_scale = {x=1,y=1,z=1},
wield_scale = {x = 1, y = 1, z = 1},
stack_max = 99,
range = 4.0,
liquids_pointable = false,
tool_capabilities = {
full_punch_interval = 1.0,
max_drop_level=0,
groupcaps={
max_drop_level = 0,
groupcaps = {
-- For example:
snappy={times={[2]=0.80, [3]=0.40}, maxwear=0.05, maxlevel=1},
choppy={times={[3]=0.90}, maxwear=0.05, maxlevel=0}
choppy = {times = {[1] = 2.50, [2] = 1.40, [3] = 1.00}, uses = 20, maxlevel = 2},
},
damage_groups = {groupname=damage},
damage_groups = {groupname = damage},
},
node_placement_prediction = nil,
--[[
Expand Down

0 comments on commit 986d70c

Please sign in to comment.