diff options
author | madmaxoft <github@xoft.cz> | 2013-10-28 13:30:24 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-28 13:30:24 +0100 |
commit | df20c19986805380cfd728d63f2e3003331b1665 (patch) | |
tree | 6f2d00c4b23f46af9a6d39550186815a95905dcb /source/LuaWindow.cpp | |
parent | APIDump: Documented HTTPFormData and HTTPRequest. (diff) | |
download | cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.gz cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.bz2 cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.lz cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.xz cuberite-df20c19986805380cfd728d63f2e3003331b1665.tar.zst cuberite-df20c19986805380cfd728d63f2e3003331b1665.zip |
Diffstat (limited to '')
-rw-r--r-- | source/LuaWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/LuaWindow.cpp b/source/LuaWindow.cpp index a0609f746..9011d668c 100644 --- a/source/LuaWindow.cpp +++ b/source/LuaWindow.cpp @@ -31,8 +31,8 @@ cLuaWindow::cLuaWindow(cWindow::WindowType a_WindowType, int a_SlotsX, int a_Slo // If appropriate, add an Armor slot area: switch (a_WindowType) { - case cWindow::Inventory: - case cWindow::Workbench: + case cWindow::wtInventory: + case cWindow::wtWorkbench: { m_SlotAreas.push_back(new cSlotAreaArmor(*this)); break; |