diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-02 12:40:20 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-02 12:40:20 +0200 |
commit | a19a0701211e0a5563dc77845e11a3f3308e2b32 (patch) | |
tree | e7ffbd81402a008a2dc8234fef39f53e31d97f03 /MCServer | |
parent | StringUtils: Fixed the HexDump in DEBUG mode (diff) | |
download | cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.tar cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.tar.gz cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.tar.bz2 cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.tar.lz cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.tar.xz cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.tar.zst cuberite-a19a0701211e0a5563dc77845e11a3f3308e2b32.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/Debuggers/Debuggers.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/Debuggers/Debuggers.lua b/MCServer/Plugins/Debuggers/Debuggers.lua index f35e2d2de..fb2601470 100644 --- a/MCServer/Plugins/Debuggers/Debuggers.lua +++ b/MCServer/Plugins/Debuggers/Debuggers.lua @@ -595,6 +595,7 @@ function HandleTestWndCmd(a_Split, a_Player) local Window = cLuaWindow(WindowType, WindowSizeX, WindowSizeY, "TestWnd");
Window:SetSlot(a_Player, 0, cItem(E_ITEM_DIAMOND, 64));
+ Window:SetSlot(a_Player, 1, cItem(E_ITEM_DIAMOND_SWORD, 1, 0, "1=1"));
Window:SetOnClosing(OnClosing);
Window:SetOnSlotChanged(OnSlotChanged);
|