diff options
author | tycho <work.tycho@gmail.com> | 2015-05-23 12:31:03 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-05-23 12:31:03 +0200 |
commit | 1577a080ee4e2fb5baaee8c8c98149eb8418b6c6 (patch) | |
tree | f8d9453f07a7475562b68ccfbfa92ad817a206be /src/Bindings/Plugin.h | |
parent | Fix tests (diff) | |
parent | Merge pull request #2108 from mc-server/tgh-boolean (diff) | |
download | cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.tar cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.tar.gz cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.tar.bz2 cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.tar.lz cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.tar.xz cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.tar.zst cuberite-1577a080ee4e2fb5baaee8c8c98149eb8418b6c6.zip |
Diffstat (limited to 'src/Bindings/Plugin.h')
-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 b4bbfd802..1330bca0d 100644 --- a/src/Bindings/Plugin.h +++ b/src/Bindings/Plugin.h @@ -56,7 +56,7 @@ public: virtual bool OnDisconnect (cClientHandle & a_Client, const AString & a_Reason) = 0; virtual bool OnEntityAddEffect (cEntity & a_Entity, int a_EffectType, int a_EffectDurationTicks, int a_EffectIntensity, double a_DistanceModifier) = 0; virtual bool OnEntityTeleport (cEntity & a_Entity, const Vector3d & a_OldPosition, const Vector3d & a_NewPosition) = 0; - virtual bool OnEntityChangeWorld (cEntity & a_Entity, cWorld & a_World) = 0; + virtual bool OnEntityChangingWorld (cEntity & a_Entity, cWorld & a_World) = 0; virtual bool OnEntityChangedWorld (cEntity & a_Entity, cWorld & a_World) = 0; virtual bool OnExecuteCommand (cPlayer * a_Player, const AStringVector & a_Split, const AString & a_EntireCommand, cPluginManager::CommandResult & a_Result) = 0; virtual bool OnExploded (cWorld & a_World, double a_ExplosionSize, bool a_CanCauseFire, double a_X, double a_Y, double a_Z, eExplosionSource a_Source, void * a_SourceData) = 0; |