mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
typo
This commit is contained in:
parent
66aab7ba64
commit
1d53233621
2 changed files with 4 additions and 1 deletions
|
@ -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 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)**
|
- 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)
|
## 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.
|
- Add [`//sfactor`](https://worldeditadditions.mooncarrot.space/Reference/#sfactor) (_selection factor_) - Selection Tools by @VorTechnix are finished for now.
|
||||||
|
|
|
@ -2,7 +2,7 @@ local wea = worldeditadditions
|
||||||
local wea_c = worldeditadditions_core
|
local wea_c = worldeditadditions_core
|
||||||
|
|
||||||
minetest.register_tool(":worldeditadditions:cloudwand", {
|
minetest.register_tool(":worldeditadditions:cloudwand", {
|
||||||
description = "WorldEditAdditions far-reaching additive selectior wand",
|
description = "WorldEditAdditions far-reaching additive selector wand",
|
||||||
inventory_image = "worldeditadditions_cloudwand.png",
|
inventory_image = "worldeditadditions_cloudwand.png",
|
||||||
|
|
||||||
on_place = function(itemstack, player, pointed_thing)
|
on_place = function(itemstack, player, pointed_thing)
|
||||||
|
|
Loading…
Reference in a new issue