diff options
author | Wuzzy <Wuzzy@disroot.org> | 2022-05-22 19:23:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-22 15:23:04 -0400 |
commit | fa682270a99383f0f91c37aeed974acc140f34df (patch) | |
tree | c0085bc9a04827d51ed75614f2e35dfa9dac0fce /doc | |
parent | ac5e8176b9a2b36520bcc78b9d486aea7742d554 (diff) | |
download | minetest-fa682270a99383f0f91c37aeed974acc140f34df.tar.gz minetest-fa682270a99383f0f91c37aeed974acc140f34df.tar.bz2 minetest-fa682270a99383f0f91c37aeed974acc140f34df.zip |
Add missing comma in example in lua_api.txt (#12339)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 96b1cc469..f0a8f7c9b 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -2012,7 +2012,7 @@ Example definition of the capabilities of an item max_drop_level=1, groupcaps={ crumbly={maxlevel=2, uses=20, times={[1]=1.60, [2]=1.20, [3]=0.80}} - } + }, damage_groups = {fleshy=2}, } |