mirror of
https://github.com/lisacvuk/minetest-toolranks.git
synced 2024-11-30 19:13:46 +01:00
Only count nodes that spend the tool.
This commit is contained in:
parent
61fde54efc
commit
2a62b23076
@ -1,2 +1,4 @@
|
|||||||
12.7.2017
|
12.7.2017
|
||||||
- Fixed bug making Minetest crash when dug nodes exceed 799
|
- Fixed bug making Minetest crash when dug nodes exceed 799
|
||||||
|
13.7.2017
|
||||||
|
- Only count nodes that spend the tool
|
||||||
|
4
init.lua
4
init.lua
@ -55,8 +55,10 @@ function toolranks.new_afteruse(itemstack, user, node, digparams)
|
|||||||
local dugnodes = tonumber(itemmeta:get_string("dug")) or 0 -- Number of nodes dug
|
local dugnodes = tonumber(itemmeta:get_string("dug")) or 0 -- Number of nodes dug
|
||||||
local lastlevel = tonumber(itemmeta:get_string("lastlevel")) or 1 -- Level the tool had
|
local lastlevel = tonumber(itemmeta:get_string("lastlevel")) or 1 -- Level the tool had
|
||||||
-- on the last dig
|
-- on the last dig
|
||||||
|
-- Only count nodes that spend the tool
|
||||||
|
if(digparams.wear > 0) then
|
||||||
dugnodes = dugnodes + 1
|
dugnodes = dugnodes + 1
|
||||||
|
end
|
||||||
|
|
||||||
level = toolranks.get_level(dugnodes)
|
level = toolranks.get_level(dugnodes)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user