Merge branch 'main' of github.com:sbrl/Minetest-WorldEditAdditions into main

This commit is contained in:
Starbeamrainbowlabs 2021-10-30 02:46:33 +01:00
commit 0bcd82a11c
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
2 changed files with 2 additions and 1 deletions

View file

@ -29,6 +29,7 @@ Note to self: See the bottom of this file for the release template text.
- Add `holly``hollytree:sapling`
- `//replacemix`: Improve error handling to avoid crashes (thanks, Jonathon for reporting via Discord!)
- Cloud wand: Improve chat message text
- Fix `bonemeal` mod detection to look for the global `bonemeal`, not whether the `bonemeal` mod name has been loaded
## v1.12: The selection tools update (26th June 2021)

View file

@ -55,7 +55,7 @@ dofile(we_c.modpath.."/commands/extra/saplingaliases.lua")
dofile(we_c.modpath.."/commands/extra/basename.lua")
-- Don't registry the //bonemeal command if the bonemeal mod isn't present
if minetest.get_modpath("bonemeal") then
if minetest.global_exists("bonemeal") then
dofile(we_c.modpath.."/commands/bonemeal.lua")
dofile(we_c.modpath.."/commands/forest.lua")
else