diff options
author | Mattes D <github@xoft.cz> | 2015-04-14 10:49:01 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-04-14 10:49:01 +0200 |
commit | de8e5ea8e438ba707de4f5df18c0f52b23634714 (patch) | |
tree | 47dee3a0384f945b07840d428bbaed93edf402b1 /src/Items/ItemItemFrame.h | |
parent | Removed HOOK_MAX and HOOK_NUM_HOOKS from Lua API. (diff) | |
download | cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.tar cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.tar.gz cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.tar.bz2 cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.tar.lz cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.tar.xz cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.tar.zst cuberite-de8e5ea8e438ba707de4f5df18c0f52b23634714.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemItemFrame.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/Items/ItemItemFrame.h b/src/Items/ItemItemFrame.h index 5d22c1cb8..77a5bf47c 100644 --- a/src/Items/ItemItemFrame.h +++ b/src/Items/ItemItemFrame.h @@ -19,21 +19,26 @@ public: } - virtual bool OnItemUse(cWorld *a_World, cPlayer *a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_Dir) override + + + virtual bool OnItemUse( + cWorld * a_World, cPlayer * a_Player, cBlockPluginInterface & a_PluginInterface, const cItem & a_Item, + int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace + ) override { - if ((a_Dir == BLOCK_FACE_NONE) || (a_Dir == BLOCK_FACE_YP) || (a_Dir == BLOCK_FACE_YM)) + if ((a_BlockFace == BLOCK_FACE_NONE) || (a_BlockFace == BLOCK_FACE_YP) || (a_BlockFace == BLOCK_FACE_YM)) { // Client sends this if clicked on top or bottom face return false; } - AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_Dir); // Make sure block that will be occupied is free + AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_BlockFace); // Make sure block that will be occupied is free BLOCKTYPE Block = a_World->GetBlock(a_BlockX, a_BlockY, a_BlockZ); - AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_Dir, true); // We want the clicked block, so go back again + AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, true); // We want the clicked block, so go back again if (Block == E_BLOCK_AIR) { - cItemFrame * ItemFrame = new cItemFrame(a_Dir, a_BlockX, a_BlockY, a_BlockZ); + cItemFrame * ItemFrame = new cItemFrame(a_BlockFace, a_BlockX, a_BlockY, a_BlockZ); if (!ItemFrame->Initialize(*a_World)) { delete ItemFrame; |