diff options
author | madmaxoft <github@xoft.cz> | 2014-08-14 01:03:30 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-08-14 01:03:30 +0200 |
commit | 008c1cdaf436dec2d7a4a925c6a600570594d6a2 (patch) | |
tree | de1e34fa8e4336ee2bcb0d1c4646f6ffb5037cf1 /src/Chunk.h | |
parent | Merge pull request #1319 from mc-server/webadminfixes (diff) | |
download | cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.tar cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.tar.gz cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.tar.bz2 cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.tar.lz cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.tar.xz cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.tar.zst cuberite-008c1cdaf436dec2d7a4a925c6a600570594d6a2.zip |
Diffstat (limited to 'src/Chunk.h')
-rw-r--r-- | src/Chunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index 813a8b13f..72a1f6c95 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -241,7 +241,7 @@ public: bool DoWithBlockEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBlockEntityCallback & a_Callback); // Lua-acessible /** Calls the callback for the redstone powered entity at the specified coords; returns false if there's no redstone powered entity at those coords, true if found */ - bool DoWithRedstonePoweredEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cRedstonePoweredCallback & a_Callback); + bool DoWithRedstonePoweredEntityAt(int a_BlockX, int a_BlockY, int a_BlockZ, cRedstonePoweredCallback & a_Callback); /** Calls the callback for the beacon at the specified coords; returns false if there's no beacon at those coords, true if found */ bool DoWithBeaconAt(int a_BlockX, int a_BlockY, int a_BlockZ, cBeaconCallback & a_Callback); // Lua-acessible |