diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-07 11:44:16 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-07 11:44:16 +0100 |
commit | c2090c0d11313bd67b02c482f1ca80d5c4567d27 (patch) | |
tree | 6f636e18ad065a8f6d38585b45bd6d9c640c3450 /src/Chunk.h | |
parent | Add Flower Pots (diff) | |
download | cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.tar cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.tar.gz cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.tar.bz2 cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.tar.lz cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.tar.xz cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.tar.zst cuberite-c2090c0d11313bd67b02c482f1ca80d5c4567d27.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index e8b46f631..b3fa563cc 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -49,7 +49,7 @@ typedef cItemCallback<cDispenserEntity> cDispenserCallback; typedef cItemCallback<cFurnaceEntity> cFurnaceCallback; typedef cItemCallback<cNoteEntity> cNoteBlockCallback; typedef cItemCallback<cCommandBlockEntity> cCommandBlockCallback; -typedef cItemCallback<cMobHeadEntity> cMobHeadBlockCallback; +typedef cItemCallback<cMobHeadEntity> cMobHeadCallback; typedef cItemCallback<cFlowerPotEntity> cFlowerPotCallback; @@ -256,7 +256,7 @@ public: bool DoWithCommandBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cCommandBlockCallback & a_Callback); /** Calls the callback for the mob head block at the specified coords; returns false if there's no mob head block at those coords or callback returns true, returns true if found */ - bool DoWithMobHeadBlockAt(int a_BlockX, int a_BlockY, int a_BlockZ, cMobHeadBlockCallback & a_Callback); + bool DoWithMobHeadAt(int a_BlockX, int a_BlockY, int a_BlockZ, cMobHeadCallback & a_Callback); /** Calls the callback for the flower pot at the specified coords; returns false if there's no flower pot at those coords or callback returns true, returns true if found */ bool DoWithFlowerPotAt(int a_BlockX, int a_BlockY, int a_BlockZ, cFlowerPotCallback & a_Callback); |