diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-10 23:03:15 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-10 23:03:15 +0200 |
commit | 929d29996585c4f2e4461519ccf2803936b81ae1 (patch) | |
tree | 86a5210c4384c9292d2d7b697f24d1dc8a6e2e6a /source/ChestEntity.h | |
parent | Added cItemGrid to represent an XY grid of items; converted chests to use cItemGrid. (diff) | |
download | cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.tar cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.tar.gz cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.tar.bz2 cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.tar.lz cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.tar.xz cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.tar.zst cuberite-929d29996585c4f2e4461519ccf2803936b81ae1.zip |
Diffstat (limited to '')
-rw-r--r-- | source/ChestEntity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/ChestEntity.h b/source/ChestEntity.h index be8172073..69e86b86c 100644 --- a/source/ChestEntity.h +++ b/source/ChestEntity.h @@ -41,8 +41,8 @@ public: static const char * GetClassStatic() { return "cChestEntity"; } // tolua_begin - const cItem & GetSlot(int a_Slot) const { return m_Contents.GetItem(a_Slot); } - void SetSlot(int a_Slot, const cItem & a_Item ) { m_Contents.SetItem(a_Slot, a_Item); } + const cItem & GetSlot(int a_Slot) const { return m_Contents.GetSlot(a_Slot); } + void SetSlot(int a_Slot, const cItem & a_Item ) { m_Contents.SetSlot(a_Slot, a_Item); } // tolua_end bool LoadFromJson( const Json::Value& a_Value ); |