Compare commits

...

2 Commits

Author SHA1 Message Date
ThePython 440892b66f v6.5 2024-01-11 07:36:14 -08:00
ThePython 61a0223216 v6.4 again 2024-01-10 17:01:21 -08:00
3 changed files with 12 additions and 4 deletions

View File

@ -67,13 +67,17 @@ Dependencies: Minetest Game or MineClone.
## Changelog
<details><summary>Look at this fancy expanding changelog</summary>
## v6.4
### v6.5
* Fixed MCL gold nuggets sometimes having the energy value of gold horse armor (reported by @programmerjake)
* Fixed the fact that the previous changelog entry was `##` instead of `###`
### v6.4
* Yes, I know, v6.3 only came out about 9 hours ago.
* Mineclonia apparently changed something minor, and it was causing a crash. I fixed it.
### v6.3
* Added Technic items to MCL base energy values (reported by @programmerjake)
* Fixed a bug where iron nuggets were worth the same amount as a random piece of chain armor (reported by @programmerjake)
* Fixed a bug where MCL iron nuggets were worth the same amount as a random piece of chain armor (reported by @programmerjake)
### v6.2
* Added a setting to disable the Alchemical Tome crafting recipe (suggested by @programmerjake)

View File

@ -104,6 +104,10 @@ else
}
end
if exchangeclone.mcl2 then
mcl_item_id.set_mod_namespace("exchangeclone")
end
dofile(modpath.."/constructor.lua")
dofile(modpath.."/deconstructor.lua")
dofile(modpath.."/energy_collector.lua")
@ -112,8 +116,7 @@ dofile(modpath.."/craftitems.lua")
if exchangeclone.mcl or minetest.get_modpath("3d_armor") then
dofile(modpath.."/armor.lua")
end
if exchangeclone.mcl2 then
mcl_item_id.set_mod_namespace("exchangeclone")
if exchangeclone.mcl then
dofile(modpath.."/shears.lua")
dofile(modpath.."/tool_upgrades.lua")
end

View File

@ -73,6 +73,7 @@ if exchangeclone.mcl then
["mcl_core:diorite"] = 16,
["mcl_core:emerald"] = 4096,
["mcl_core:flint"] = 4,
["mcl_core:gold_ingot"] = 2048,
["mcl_core:granite"] = 16,
["mcl_core:grass"] = 1,
["mcl_core:gravel"] = 4,