diff options
author | Mattes D <github@xoft.cz> | 2015-05-10 21:29:06 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-05-10 21:37:46 +0200 |
commit | cbb1eff17a085f57472f67cbe3682232fb3a4aeb (patch) | |
tree | 5081f9c836e6f3419585980d42834b1eec944e67 /src/Bindings/Plugin.h | |
parent | Merge pull request #1977 from mc-server/warnings (diff) | |
download | cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.tar cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.tar.gz cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.tar.bz2 cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.tar.lz cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.tar.xz cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.tar.zst cuberite-cbb1eff17a085f57472f67cbe3682232fb3a4aeb.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 5c43f9042..6b6a00ba6 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 OnExecuteCommand (cPlayer * a_Player, const AStringVector & a_Split) = 0; + virtual bool OnExecuteCommand (cPlayer * a_Player, const AStringVector & a_Split, const AString & a_EntireCommand) = 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; virtual bool OnExploding (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; virtual bool OnHandshake (cClientHandle & a_Client, const AString & a_Username) = 0; |