diff options
author | madmaxoft <github@xoft.cz> | 2013-09-07 18:12:22 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-07 18:12:22 +0200 |
commit | 3b1c83acf8a0592f3c09a6bd530f8b695272b1ab (patch) | |
tree | f95b5f62aec5fb41cc8d1d1d1bed5f1e8e135ac3 /source/World.h | |
parent | Arrows have proper yaw and pitch when shot, and stop when they hit a block. (diff) | |
download | cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.tar cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.tar.gz cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.tar.bz2 cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.tar.lz cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.tar.xz cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.tar.zst cuberite-3b1c83acf8a0592f3c09a6bd530f8b695272b1ab.zip |
Diffstat (limited to '')
-rw-r--r-- | source/World.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/World.h b/source/World.h index 9e2bf4e8f..1f475a4ac 100644 --- a/source/World.h +++ b/source/World.h @@ -414,13 +414,13 @@ public: | esCreeper | cCreeper * | | esBed | cVector3i * | | esEnderCrystal | Vector3i * | - | esGhastFireball | TBD | + | esGhastFireball | cGhastFireballEntity * | | esWitherSkullBlack | TBD | | esWitherSkullBlue | TBD | | esWitherBirth | TBD | | esPlugin | void * | */ - void DoExplosiontAt(double a_ExplosionSize, double a_BlockX, double a_BlockY, double a_BlockZ, bool a_CanCauseFire, eExplosionSource a_Source, void * a_SourceData); // tolua_export + void DoExplosionAt(double a_ExplosionSize, double a_BlockX, double a_BlockY, double a_BlockZ, bool a_CanCauseFire, eExplosionSource a_Source, void * a_SourceData); // tolua_export /// Calls the callback for the chest at the specified coords; returns false if there's no chest at those coords, true if found bool DoWithChestAt (int a_BlockX, int a_BlockY, int a_BlockZ, cChestCallback & a_Callback); // Exported in ManualBindings.cpp |