diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-03-16 16:06:03 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-03-27 23:20:28 +0100 |
commit | 3774b1be6445257a28677fbdce17bab58c168df9 (patch) | |
tree | f6cde5eb9cfbeff6b8e99294c11cfabe644b6c2b /src/Bindings/Plugin.h | |
parent | Add HOOK_BLOCK_SPREAD (diff) | |
download | cuberite-3774b1be6445257a28677fbdce17bab58c168df9.tar cuberite-3774b1be6445257a28677fbdce17bab58c168df9.tar.gz cuberite-3774b1be6445257a28677fbdce17bab58c168df9.tar.bz2 cuberite-3774b1be6445257a28677fbdce17bab58c168df9.tar.lz cuberite-3774b1be6445257a28677fbdce17bab58c168df9.tar.xz cuberite-3774b1be6445257a28677fbdce17bab58c168df9.tar.zst cuberite-3774b1be6445257a28677fbdce17bab58c168df9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Bindings/Plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bindings/Plugin.h b/src/Bindings/Plugin.h index 4c6d5a938..057fa0304 100644 --- a/src/Bindings/Plugin.h +++ b/src/Bindings/Plugin.h @@ -46,7 +46,7 @@ public: * On all these functions, return true if you want to override default behavior and not call other plugins on that callback. * You can also return false, so default behavior is used. **/ - virtual bool OnBlockSpread (cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ) = 0; + virtual bool OnBlockSpread (cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ, eSpreadSource a_Source) = 0; virtual bool OnBlockToPickups (cWorld * a_World, cEntity * a_Digger, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, cItems & a_Pickups) = 0; virtual bool OnChat (cPlayer * a_Player, AString & a_Message) = 0; virtual bool OnChunkAvailable (cWorld * a_World, int a_ChunkX, int a_ChunkZ) = 0; |