diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-06-29 12:41:50 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-06-29 12:41:50 +0200 |
commit | 909e0ed95b508b0cc3779df342899e8661e6da96 (patch) | |
tree | e76a22c165d76b20be1f26cd90b11d43bc896a5f | |
parent | Properly implemented enderchests (diff) | |
download | cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.tar cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.tar.gz cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.tar.bz2 cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.tar.lz cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.tar.xz cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.tar.zst cuberite-909e0ed95b508b0cc3779df342899e8661e6da96.zip |
Diffstat (limited to '')
-rw-r--r-- | src/UI/SlotArea.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/UI/SlotArea.cpp b/src/UI/SlotArea.cpp index a2661e49e..48ebf489b 100644 --- a/src/UI/SlotArea.cpp +++ b/src/UI/SlotArea.cpp @@ -1341,7 +1341,6 @@ cSlotAreaEnderChest::cSlotAreaEnderChest(cEnderChestEntity * a_EnderChest, cWind const cItem * cSlotAreaEnderChest::GetSlot(int a_SlotNum, cPlayer & a_Player) const { - // a_SlotNum ranges from 0 to 26, use that to index the chest entity's inventory directly: return &(a_Player.GetEnderChestContents().GetSlot(a_SlotNum)); } |