diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-10-02 15:22:17 +0200 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2020-10-03 17:54:14 +0200 |
commit | 21068011c6d8a4794eec86794d6b9612a265f03a (patch) | |
tree | f8c6bf1d8760a02945c0622ff2d237ff3b737030 /src/UI/Window.h | |
parent | Fix instant mining of blocks not being recognised, tweak anti-cheat (#4938) (diff) | |
download | cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.tar cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.tar.gz cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.tar.bz2 cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.tar.lz cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.tar.xz cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.tar.zst cuberite-21068011c6d8a4794eec86794d6b9612a265f03a.zip |
Diffstat (limited to 'src/UI/Window.h')
-rw-r--r-- | src/UI/Window.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/UI/Window.h b/src/UI/Window.h index 65fbc3756..46935acef 100644 --- a/src/UI/Window.h +++ b/src/UI/Window.h @@ -142,11 +142,7 @@ public: /** Updates a numerical property associated with the window. Typically used for furnace progressbars. Sends the UpdateWindowProperty packet to all clients of the window */ - virtual void SetProperty(short a_Property, short a_Value); - - /** Updates a numerical property associated with the window. Typically used for furnace progressbars. - Sends the UpdateWindowProperty packet only to the specified player */ - virtual void SetProperty(short a_Property, short a_Value, cPlayer & a_Player); + virtual void SetProperty(size_t a_Property, short a_Value); // tolua_end @@ -179,6 +175,7 @@ public: void SendSlot(cPlayer & a_Player, cSlotArea * a_SlotArea, int a_RelativeSlotNum); protected: + cSlotAreas m_SlotAreas; char m_WindowID; @@ -227,7 +224,3 @@ protected: @param a_LimitItems if false, no checks are performed on a_Item.m_ItemCount. */ int DistributeItemToSlots(cPlayer & a_Player, const cItem & a_Item, int a_NumToEachSlot, const cSlotNums & a_SlotNums, bool a_LimitItems = true); } ; // tolua_export - - - - |