From 92451cf125abc241ddf7c7602639d785492c31b7 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 30 Jul 2021 18:05:45 +0100 Subject: [PATCH] scale.lua: fix inconsistent whitespace --- worldeditadditions_commands/commands/scale.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldeditadditions_commands/commands/scale.lua b/worldeditadditions_commands/commands/scale.lua index 01a3503..efebcaf 100644 --- a/worldeditadditions_commands/commands/scale.lua +++ b/worldeditadditions_commands/commands/scale.lua @@ -37,7 +37,7 @@ worldedit.register_command("scale", { if #parts == 2 then if not (parts[1] == "x" or parts[1] == "y" or parts[1] == "z" - or parts[1] == "-x" or parts[1] == "-y" or parts[1] == "-z") then + or parts[1] == "-x" or parts[1] == "-y" or parts[1] == "-z") then return false, "Error: Got 2 arguments, but the first doesn't look like the name of an axis." end local axis = parts[1]