diff options
author | Mattes D <github@xoft.cz> | 2015-03-22 19:46:08 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-03-22 19:46:08 +0100 |
commit | c6268483934eb2bfdcb76ae621a0be40f76209f5 (patch) | |
tree | 9cf896200c8eaf94ca0f6c90bee3bf9c37dbce5b /src/Entities | |
parent | ProtoProxy: Fixed connection and logging. (diff) | |
download | cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.tar cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.tar.gz cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.tar.bz2 cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.tar.lz cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.tar.xz cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.tar.zst cuberite-c6268483934eb2bfdcb76ae621a0be40f76209f5.zip |
Diffstat (limited to 'src/Entities')
-rw-r--r-- | src/Entities/ItemFrame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/ItemFrame.h b/src/Entities/ItemFrame.h index 2444b26a3..ff43e5ee1 100644 --- a/src/Entities/ItemFrame.h +++ b/src/Entities/ItemFrame.h @@ -24,7 +24,7 @@ public: // tolua_begin /** Returns the item in the frame */ - const cItem & GetItem(void) { return m_Item; } + const cItem & GetItem(void) const { return m_Item; } /** Set the item in the frame */ void SetItem(cItem & a_Item) { m_Item = a_Item; } |