summaryrefslogtreecommitdiffstats
path: root/MCServer
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-10-28 13:44:57 +0100
committermadmaxoft <github@xoft.cz>2013-10-28 13:44:57 +0100
commitd41d5c15b1828e71990c0e31d7c11c0ac768ed59 (patch)
tree89c4f21409329ca4aef55b5be3e313323502e8d0 /MCServer
parentAPIDump: Documented cWindow. (diff)
downloadcuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.tar
cuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.tar.gz
cuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.tar.bz2
cuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.tar.lz
cuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.tar.xz
cuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.tar.zst
cuberite-d41d5c15b1828e71990c0e31d7c11c0ac768ed59.zip
Diffstat (limited to 'MCServer')
-rw-r--r--MCServer/Plugins/Debuggers/Debuggers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/MCServer/Plugins/Debuggers/Debuggers.lua b/MCServer/Plugins/Debuggers/Debuggers.lua
index b895da05e..04a15a002 100644
--- a/MCServer/Plugins/Debuggers/Debuggers.lua
+++ b/MCServer/Plugins/Debuggers/Debuggers.lua
@@ -606,7 +606,7 @@ end
function HandleTestWndCmd(a_Split, a_Player)
- local WindowType = cWindow.Hopper;
+ local WindowType = cWindow.wtHopper;
local WindowSizeX = 5;
local WindowSizeY = 1;
if (#a_Split == 4) then
@@ -789,7 +789,7 @@ end
function HandleEnchCmd(a_Split, a_Player)
- local Wnd = cLuaWindow(cWindow.Enchantment, 1, 1, "Ench");
+ local Wnd = cLuaWindow(cWindow.wtEnchantment, 1, 1, "Ench");
a_Player:OpenWindow(Wnd);
Wnd:SetProperty(0, 10);
Wnd:SetProperty(1, 15);