mirror of
				https://github.com/Uberi/Minetest-WorldEdit.git
				synced 2025-10-31 04:45:33 +01:00 
			
		
		
		
	Fix several typos
This commit is contained in:
		| @@ -1,3 +1,6 @@ | ||||
| dofile(minetest.get_modpath("worldedit_commands") .. "/cuboidapi.lua") | ||||
|  | ||||
|  | ||||
| minetest.register_chatcommand("/outset", { | ||||
| 	params = "<amount> [h|v]", | ||||
| 	description = "outset the selection", | ||||
| @@ -18,15 +21,15 @@ minetest.register_chatcommand("/outset", { | ||||
| 		end | ||||
| 		 | ||||
| 		if dir == "" then | ||||
| 			assert(worldedit.cuboid_volumetricexpand(name, amount)) | ||||
| 			assert(worldedit.cuboid_volumetric_expand(name, amount)) | ||||
| 		elseif dir == "h" then | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'x', 1, amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'x', -1, amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'z', 1, amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'z', -1, amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'x', 1, amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'x', -1, amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'z', 1, amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'z', -1, amount)) | ||||
| 		elseif dir == "v" then | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'y', 1, amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'y', -1, amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'y', 1, amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'y', -1, amount)) | ||||
| 		else | ||||
| 			return false, "Unknown error" | ||||
| 		end | ||||
| @@ -37,6 +40,7 @@ minetest.register_chatcommand("/outset", { | ||||
|   } | ||||
| ) | ||||
|  | ||||
|  | ||||
| minetest.register_chatcommand("/inset", { | ||||
| 	params = "<amount> [h|v]", | ||||
| 	description = "inset the selection", | ||||
| @@ -57,15 +61,15 @@ minetest.register_chatcommand("/inset", { | ||||
| 		end | ||||
| 		 | ||||
| 		if dir == "" then | ||||
| 			assert(worldedit.cuboid_volumetricexpand(name, -amount)) | ||||
| 			assert(worldedit.cuboid_volumetric_expand(name, -amount)) | ||||
| 		elseif dir == "h" then | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'x', 1, -amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'x', -1, -amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'z', 1, -amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'z', -1, -amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'x', 1, -amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'x', -1, -amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'z', 1, -amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'z', -1, -amount)) | ||||
| 		elseif dir == "v" then | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'y', 1, -amount)) | ||||
| 			assert(worldedit.cuboid_linealexpand(name, 'y', -1, -amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'y', 1, -amount)) | ||||
| 			assert(worldedit.cuboid_linear_expand(name, 'y', -1, -amount)) | ||||
| 		else | ||||
| 			return false, "Unknown error" | ||||
| 		end | ||||
| @@ -102,17 +106,17 @@ minetest.register_chatcommand("/shift", { | ||||
| 			axis, dir = worldedit.translate_direction(name, direction) | ||||
| 		else | ||||
| 			axis, dir = worldedit.player_axis(name) | ||||
| 			worldedit.player_notify(name, "entered player_axis") | ||||
| 		end | ||||
| 		 | ||||
| 		assert(worldedit.cuboid_shift(name, axis, amount * dir)) | ||||
| 		worldedit.marker_update(name) | ||||
| 		 | ||||
| 		return true, "region shifted by " .. amount .. " blocks" | ||||
| 		return true, "region shifted by " .. amount .. " nodes" | ||||
|       end, | ||||
|   } | ||||
| ) | ||||
|  | ||||
|  | ||||
| minetest.register_chatcommand("/expand", { | ||||
| 	params = "<amount> [reverse-amount] [up|down|left|right|front|back]", | ||||
| 	description = "expand the selection in one or two directions at once", | ||||
| @@ -133,7 +137,7 @@ minetest.register_chatcommand("/expand", { | ||||
| 	 | ||||
| 	local tmp = tonumber(arg2) | ||||
| 	local axis, dir | ||||
| 	local reverseamount = 0 | ||||
| 	local reverse_amount = 0 | ||||
| 	 | ||||
| 	axis,dir = worldedit.player_axis(name) | ||||
| 	 | ||||
| @@ -141,7 +145,7 @@ minetest.register_chatcommand("/expand", { | ||||
| 		if tmp == nil then | ||||
| 			axis, dir = worldedit.translate_direction(name, arg2) | ||||
| 		else | ||||
| 			reverseamount = tmp | ||||
| 			reverse_amount = tmp | ||||
| 		end | ||||
| 	end | ||||
| 	 | ||||
| @@ -149,8 +153,8 @@ minetest.register_chatcommand("/expand", { | ||||
| 		axis, dir = worldedit.translate_direction(name, arg3) | ||||
| 	end | ||||
| 	 | ||||
| 	worldedit.cuboid_linealexpand(name, axis, dir, amount) | ||||
| 	worldedit.cuboid_linealexpand(name, axis, -dir, reverseamount) | ||||
| 	worldedit.cuboid_linear_expand(name, axis, dir, amount) | ||||
| 	worldedit.cuboid_linear_expand(name, axis, -dir, reverse_amount) | ||||
| 	worldedit.marker_update(name) | ||||
|       end, | ||||
|   } | ||||
| @@ -177,7 +181,7 @@ minetest.register_chatcommand("/contract", { | ||||
| 	 | ||||
| 	local tmp = tonumber(arg2) | ||||
| 	local axis, dir | ||||
| 	local reverseamount = 0 | ||||
| 	local reverse_amount = 0 | ||||
| 	 | ||||
| 	axis,dir = worldedit.player_axis(name) | ||||
| 	 | ||||
| @@ -185,7 +189,7 @@ minetest.register_chatcommand("/contract", { | ||||
| 		if tmp == nil then | ||||
| 			axis, dir = worldedit.translate_direction(name, arg2) | ||||
| 		else | ||||
| 			reverseamount = tmp | ||||
| 			reverse_amount = tmp | ||||
| 		end | ||||
| 	end | ||||
| 	 | ||||
| @@ -193,13 +197,9 @@ minetest.register_chatcommand("/contract", { | ||||
| 		axis, dir = worldedit.translate_direction(name, arg3) | ||||
| 	end | ||||
| 	 | ||||
| 	worldedit.cuboid_linealexpand(name, axis, dir, -amount) | ||||
| 	worldedit.cuboid_linealexpand(name, axis, -dir, -reverseamount) | ||||
| 	worldedit.cuboid_linear_expand(name, axis, dir, -amount) | ||||
| 	worldedit.cuboid_linear_expand(name, axis, -dir, -reverse_amount) | ||||
| 	worldedit.marker_update(name) | ||||
|       end, | ||||
|   } | ||||
| ) | ||||
|  | ||||
|  | ||||
| dofile(minetest.get_modpath("worldedit_commands") .. "/cuboidapi.lua") | ||||
|  | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| -- Expands or contracts the cuboid in all axes by amount (positive or negative) | ||||
| worldedit.cuboid_volumetricexpand = function(name, amount) | ||||
| worldedit.cuboid_volumetric_expand = function(name, amount) | ||||
| 	local pos1 = worldedit.pos1[name] | ||||
| 	local pos2 = worldedit.pos2[name] | ||||
| 	 | ||||
| @@ -9,14 +9,14 @@ worldedit.cuboid_volumetricexpand = function(name, amount) | ||||
| 	 | ||||
| 	local delta1 = vector.new() | ||||
| 	local delta2 = vector.new() | ||||
| 	local deltadir1 | ||||
| 	local deltadir2 | ||||
| 	local delta_dir1 | ||||
| 	local delta_dir2 | ||||
| 	 | ||||
| 	delta1 = vector.add(delta1, amount) | ||||
| 	delta2 = vector.add(delta2, amount) | ||||
| 	deltadir1, deltadir2 = worldedit.get_expansion_directions(pos1, pos2) | ||||
| 	delta1 = vector.multiply(delta1, deltadir1) | ||||
| 	delta2 = vector.multiply(delta2, deltadir2) | ||||
| 	delta_dir1, delta_dir2 = worldedit.get_expansion_directions(pos1, pos2) | ||||
| 	delta1 = vector.multiply(delta1, delta_dir1) | ||||
| 	delta2 = vector.multiply(delta2, delta_dir2) | ||||
| 	worldedit.pos1[name] = vector.add(pos1, delta1) | ||||
| 	worldedit.pos2[name] = vector.add(pos2, delta2) | ||||
| 	 | ||||
| @@ -25,7 +25,7 @@ end | ||||
|  | ||||
|  | ||||
| -- Expands or contracts the cuboid in a single axis by amount (positive or negative) | ||||
| worldedit.cuboid_linealexpand = function(name, axis, direction, amount) | ||||
| worldedit.cuboid_linear_expand = function(name, axis, direction, amount) | ||||
| 	local pos1 = worldedit.pos1[name] | ||||
| 	local pos2 = worldedit.pos2[name] | ||||
| 	 | ||||
|   | ||||
| @@ -12,6 +12,7 @@ if minetest.place_schematic then | ||||
| 	worldedit.prob_list = {} | ||||
| end | ||||
|  | ||||
| dofile(minetest.get_modpath("worldedit_commands") .. "/cuboid.lua") | ||||
| dofile(minetest.get_modpath("worldedit_commands") .. "/mark.lua") | ||||
| dofile(minetest.get_modpath("worldedit_commands") .. "/safe.lua"); safe_region = safe_region or function(callback) return callback end | ||||
|  | ||||
| @@ -1118,5 +1119,3 @@ minetest.register_chatcommand("/clearobjects", { | ||||
| 		worldedit.player_notify(name, count .. " objects cleared") | ||||
| 	end), | ||||
| }) | ||||
|  | ||||
| dofile(minetest.get_modpath("worldedit_commands") .. "/cuboid.lua") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user