Merge branch 'main' into dev

This commit is contained in:
ThePython 2023-10-30 16:59:32 -07:00
commit 3821ae518c
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# ExchangeClone
Allows players to turn items into energy (stored in orbs), and energy from orbs into items. Supports all items in Minetest Game and MineClone 2!
Allows players to turn items into energy, and energy into items. Supports all items in Minetest Game and MineClone 2! Also adds a whole bunch of other stuff.
## ExchangeClone's Features:
* Philosopher's Stone
@ -54,6 +54,9 @@ Dependencies: Minetest Game or MineClone.
<details><summary><h1>Changelog:</h1></summary>
### 5.2
* Removed unnecessary logging every time players take damage (I was testing stuff out with the armor)
### 5.1
* Fixed Mineclonia energy values (I foolishly assumed that all items would have the same itemstrings and groups).
* Added new Mineclonia items (pottery, sculk, smithing templates, suspicious sand, etc.)

View File

@ -111,7 +111,6 @@ if exchangeclone.mcl then
end
mcl_damage.register_modifier(function(obj, damage, reason)
minetest.log(dump({damage, reason}))
local blocked = blocked_damage_types[reason.type]
local inv = mcl_util.get_inventory(obj)
if inv then