Compare commits

...

3 Commits

Author SHA1 Message Date
ThePython 3a85cb073a Credit for issues 2024-02-13 07:31:43 -08:00
ThePython 80e53ed12c Removed extra space 2024-02-13 07:29:16 -08:00
ThePython 335c9c6e91 v6.9 2024-02-13 07:27:56 -08:00
2 changed files with 12 additions and 9 deletions

View File

@ -38,14 +38,14 @@ See the [wiki](https://github.com/ThePython10110/ExchangeClone/wiki) for more in
Dependencies: Minetest Game or MineClone.
## Known issues:
* Dark/Red Matter armor don't work they way they should, especially in MTG. I would greatly appreciate a PR that makes them work more like ProjectE.
* The sword/katar AOE ability does not take upgrades into account. This will probably not be fixed (MCL)
* For technical reasons (making them work with MCL hoppers), Exchange Orbs and Upgrades can be used as fuel. This isn't really a problem, but it will be removed once I decide the new hopper API is new enough that most people are using it.
* The sword/katar AOE ability does not take upgrades (looting, fire aspect, etc.) into account. This will probably not be fixed (MCL)
* For technical reasons (making them work with MCL hoppers), Exchange Orbs and Upgrades can be used as fuel. This isn't really a problem, but it will be removed once I decide the new hopper API is old enough that most people are using it.
* Dark/Red Matter Shears will sometimes (randomly) be treated as normal shears when used by dispensers. This will not be fixed.
* In Mineclonia, when inserting items into Dark/Red Matter Furnaces with hoppers, they will not start at the correct speed, instead being limited to a maximum of 1 item/second. This will not be fixed unless Mineclonia changes how things work.
* In Mineclonia, hoppers can put invalid items into Energy Collectors.
* DM/RM tools and armor aren't great... the DM tools are TOO fast and the armor is (depending on which game you're playing), too good or not good enough. I would love it if someone with more patience would submit a PR to improve them. I would like them to be as close to ProjectE as possible, and as similar as possible between MTG and MCL... but I just hate doing that kind of thing.
* DM tools mine RM nodes too quickly for something that doesn't drop (MCL).
* DM/RM tools and armor aren't great... the DM tools are TOO fast and the armor is (depending on which game you're playing), too good or not good enough. I would love it if someone with more patience would submit a PR to improve them. I would like them to be as close to ProjectE as possible, and as similar as possible between MTG and MCL... but I just hate doing that kind of thing. Tools will be fixed in v7.0, and armor *might* be (depends on whether [this engine issue](https://github.com/minetest/minetest/issues/14344) gets fixed)
* DM tools mine RM nodes too quickly for something that doesn't drop (MCL). This will be fixed in v7.0.
* In Mineclonia, the Philosopher's Stone is unable to transmute wood and leaves. This will be fixed in v7.0.
**If you have a suggestion or notice a bug, visit the [GitHub issues page](https://github.com/thepython10110/exchangeclone/issues).**
@ -86,13 +86,16 @@ Dependencies: Minetest Game or MineClone.
<details><summary>Look at this fancy expanding changelog</summary>
### v7.0
* Nothing yet. See the to-do list above for my plans.
* Nothing yet. See the to-do list above for my plans and the dev branch on GitHub for my current progress.
### v6.9
* Fixed a bug where characters were not escaped in the search bar of the Transmutation Table(t) formspec (reported by @programmerjake).
### v6.8
* Fixed a crash caused by using tool abilities on certain nodes
* Fixed a crash caused by using tool abilities on certain nodes (reported by @programmerjake).
### v6.7
* Allowed More Ores energy values to work in MCL
* Allowed More Ores energy values to work in MCL (reported by @programmerjake).
### v6.6
* Removed energy value for Ancient Debris (since it could be smelted in a DM/RM Furnace to get 2 Netherite Scrap)

View File

@ -252,7 +252,7 @@ function exchangeclone.show_transmutation_table_formspec(player, data)
"button[1,3.5;1,1;plus5;+5]"..
"button[0,4.5;1,1;plus10;+10]"..
"button[1,4.5;1,1;plusstack;+Stack]"..
"field[4.25,0.25;4,1;search_box;;"..(data.search or player:get_meta():get_string("exchangeclone_transmutation_search") or "").."]"..
"field[4.25,0.25;4,1;search_box;;"..minetest.formspec_escape(data.search or player:get_meta():get_string("exchangeclone_transmutation_search") or "").."]"..
"field_close_on_enter[search_box;false]"..
"button[8,0;1,1;search_button;Search]"..
exchangeclone.inventory_formspec(0,6.25)..