Release :)

This commit is contained in:
BlockMen 2015-02-26 18:19:05 +01:00
parent 6f734b31b0
commit 54ffc6b3b9
2 changed files with 11 additions and 3 deletions

View File

@ -4,7 +4,7 @@ version: 2.0
License of source code: WTFPL
-----------------------------
Written 2013-2014 by BlockMen
Written 2013-2015 by BlockMen
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
@ -26,9 +26,17 @@ First: This mod adds 3 different buttons to player inventory. With those buttons
"^"-Button sorts all items in an ascending order
"v"-Button sorts all items in an descending order
NOTE: It's currently only working for the player inventory, not for chests or other formspecs.
Furthermore this mod has the ability to refill your wielded items automaticly. For example your current tool
break and you have one more of the same type (e.g. a stone pickaxe) this mod put it right in you hand
and you can keep digging our placing nodes without opening the inventory.
You can disable this setting by adding/changing following to your minetest.conf file: "invtweak_autorefill = false"
As a small gimic it adds also a sound when a tool breaks, to improve the atmosphere of the gameplay.
As a small gimmick it adds also a sound when a tool breaks, just to improve the atmosphere of the gameplay.
Supported mods:
- unified_inventory
- 3d_armor.

View File

@ -238,7 +238,7 @@ minetest.register_on_punchnode(function(pos, node, puncher)
return
end
wielded.wear[name] = item:get_wear()
-- TODO: re-add for costum tools like lighter
-- TODO: re-add for custom tools like lighter
end)
minetest.register_on_dignode(function(pos, oldnode, digger)