diff options
author | Mattes D <github@xoft.cz> | 2015-05-21 12:57:25 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-05-21 12:57:25 +0200 |
commit | 6bafff056038ca5909343b454318ea3dc15c0793 (patch) | |
tree | 6a6b223ffd7e5b2edf9f0f7f45b76f20f11fecaf /src/Bindings/PluginManager.h | |
parent | Merge pull request #2085 from mc-server/EquifaxCerts (diff) | |
parent | Renamed hook HOOK_ENTITY_CHANGE_WORLD (diff) | |
download | cuberite-6bafff056038ca5909343b454318ea3dc15c0793.tar cuberite-6bafff056038ca5909343b454318ea3dc15c0793.tar.gz cuberite-6bafff056038ca5909343b454318ea3dc15c0793.tar.bz2 cuberite-6bafff056038ca5909343b454318ea3dc15c0793.tar.lz cuberite-6bafff056038ca5909343b454318ea3dc15c0793.tar.xz cuberite-6bafff056038ca5909343b454318ea3dc15c0793.tar.zst cuberite-6bafff056038ca5909343b454318ea3dc15c0793.zip |
Diffstat (limited to 'src/Bindings/PluginManager.h')
-rw-r--r-- | src/Bindings/PluginManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Bindings/PluginManager.h b/src/Bindings/PluginManager.h index e528c049f..6bcef87bf 100644 --- a/src/Bindings/PluginManager.h +++ b/src/Bindings/PluginManager.h @@ -86,7 +86,7 @@ public: HOOK_DISCONNECT, HOOK_PLAYER_ANIMATION, HOOK_ENTITY_ADD_EFFECT, - HOOK_ENTITY_CHANGE_WORLD, + HOOK_ENTITY_CHANGING_WORLD, HOOK_ENTITY_CHANGED_WORLD, HOOK_EXECUTE_COMMAND, HOOK_EXPLODED, @@ -203,7 +203,7 @@ public: bool CallHookDisconnect (cClientHandle & a_Client, const AString & a_Reason); bool CallHookEntityAddEffect (cEntity & a_Entity, int a_EffectType, int a_EffectDurationTicks, int a_EffectIntensity, double a_DistanceModifier); bool CallHookEntityTeleport (cEntity & a_Entity, const Vector3d & a_OldPosition, const Vector3d & a_NewPosition); - bool CallHookEntityChangeWorld (cEntity & a_Entity, cWorld & a_World); + bool CallHookEntityChangingWorld (cEntity & a_Entity, cWorld & a_World); bool CallHookEntityChangedWorld (cEntity & a_Entity, cWorld & a_World); bool CallHookExecuteCommand (cPlayer * a_Player, const AStringVector & a_Split, const AString & a_EntireCommand, CommandResult & a_Result); // If a_Player == nullptr, it is a console cmd bool CallHookExploded (cWorld & a_World, double a_ExplosionSize, bool a_CanCauseFire, double a_X, double a_Y, double a_Z, eExplosionSource a_Source, void * a_SourceData); |