diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c9a27a..f87f193 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ Note to self: See the bottom of this file for the release template text. - Add new multi-point selection wand ![A picture of the multi-point wand](https://raw.githubusercontent.com/sbrl/Minetest-WorldEditAdditions/main/worldeditadditions_farwand/textures/worldeditadditions_multiwand.png) to select many points at once. **Not currently compatible with other wands**, as it's a work-in-progress (commands that support/require more than 2 points are hopefully coming soon) - Add `//spline`, for drawing curved lines with an arbitrary number of points **(uses the new multi-point wand)** +### Bugfixes + - Cloud wand: fix typo in item description. + ## v1.13: The transformational update (2nd January 2022) - Add [`//sfactor`](https://worldeditadditions.mooncarrot.space/Reference/#sfactor) (_selection factor_) - Selection Tools by @VorTechnix are finished for now. diff --git a/worldeditadditions_farwand/lib/cloudwand.lua b/worldeditadditions_farwand/lib/cloudwand.lua index 23eceff..a880aea 100644 --- a/worldeditadditions_farwand/lib/cloudwand.lua +++ b/worldeditadditions_farwand/lib/cloudwand.lua @@ -2,7 +2,7 @@ local wea = worldeditadditions local wea_c = worldeditadditions_core minetest.register_tool(":worldeditadditions:cloudwand", { - description = "WorldEditAdditions far-reaching additive selectior wand", + description = "WorldEditAdditions far-reaching additive selector wand", inventory_image = "worldeditadditions_cloudwand.png", on_place = function(itemstack, player, pointed_thing)