Update docs, add missing conversions

This commit is contained in:
kakalak-lumberjack 2023-05-29 08:30:52 -04:00
parent 2349b588f9
commit 1cd505bc9e
2 changed files with 10 additions and 1 deletions

View File

@ -63,9 +63,15 @@ Just wield it and click on any node or entity you want to know more about. A lim
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
### Change log:
- 11.27.2021
- 29.5.2023
- Add `replacer.add_conversion` for registering automatic conversions of nodes to desired nodes when selected (ex. Selected: "default:dirt_with_grass", Places: "defaut:dirt"). Includes full support for current default biome top nodes to filler, decorations and active furnace support.
- Add support for taking items from bags in unified inventory in survival mode. Replacer now consumes item from inventory before placing/replacing node.
- Prevent replacement of nodes with non empty inventory.
- Add support of using `{groups = 'not_in_replacer' = 1}` in node definitions of nodes that should be excluded from being selected or placed with replacer tool.
- 27.11.2021
- Add mode setting for paint and legacy keybindings
- Code and documentation cleaned up and updated.
- ustom replacer texture
- 2020
- Added HUD support and remove chat messages
- Added new keybinding to allow paint mechanic while replacing nodes

View File

@ -45,6 +45,9 @@ replacer.add_conversion("default:dry_grass_5", "default:dry_grass_1")
replacer.add_conversion("default:fern_2", "default:fern_1")
replacer.add_conversion("default:marram_grass_2", "default:marram_grass_1")
replacer.add_conversion("default:marram_grass_3", "default:marram_grass_1")
-- misc
replacer.add_conversion("default:blueberry_bush_leaves_with_berries", "default:blueberry_bush_leaves")
replacer.add_conversion("default:furnace_active", "default:furnace")
-- Tool
minetest.register_tool("replacer:replacer", {