From fc037e9c82f34a6bf441dd738c1b10a510eb8b4d Mon Sep 17 00:00:00 2001 From: Anthony Zhang Date: Thu, 18 Jun 2015 18:14:45 -0400 Subject: [PATCH] Fix formspec typo causing crashing upon using `/orient` in the GUI. --- worldedit_gui/functionality.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldedit_gui/functionality.lua b/worldedit_gui/functionality.lua index 620f6c4..989c9eb 100644 --- a/worldedit_gui/functionality.lua +++ b/worldedit_gui/functionality.lua @@ -488,7 +488,7 @@ worldedit.register_gui_function("worldedit_gui_orient", { get_formspec = function(name) local angle = gui_angle[name] return "size[5,3]" .. worldedit.get_formspec_header("worldedit_gui_orient") .. - string.format("dropdown[0,1;2.5;worldedit_gui_rotate_angle;90 degrees,180 degrees,270 degrees;%s]", angle) .. + string.format("dropdown[0,1;2.5;worldedit_gui_orient_angle;90 degrees,180 degrees,270 degrees;%s]", angle) .. "button_exit[0,2.5;3,0.8;worldedit_gui_orient_submit;Orient]" end, })