diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-08-20 22:19:50 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-08-20 22:19:50 +0200 |
commit | cf5ab14ca59904e208bf6cb9d87134f01803eeed (patch) | |
tree | 065899b9622787fd7289795fa7dd6fe5022199e2 /src/Bindings/Plugin.h | |
parent | Added "HOOK_SERVER_PING" call to older protocols (diff) | |
download | cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.tar cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.tar.gz cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.tar.bz2 cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.tar.lz cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.tar.xz cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.tar.zst cuberite-cf5ab14ca59904e208bf6cb9d87134f01803eeed.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 fef86822d..16d789598 100644 --- a/src/Bindings/Plugin.h +++ b/src/Bindings/Plugin.h @@ -91,7 +91,7 @@ public: virtual bool OnPreCrafting (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe) = 0; virtual bool OnProjectileHitBlock (cProjectileEntity & a_Projectile, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_Face, const Vector3d & a_BlockHitPos) = 0; virtual bool OnProjectileHitEntity (cProjectileEntity & a_Projectile, cEntity & a_HitEntity) = 0; - virtual bool OnServerPing (AString & a_Motd, int & a_OnlinePlayersCount, int & a_MaxPlayersCount, AString & a_Favicon) = 0; + virtual bool OnServerPing (cClientHandle & a_ClientHandle, AString & a_Motd, int & a_OnlinePlayersCount, int & a_MaxPlayersCount, AString & a_Favicon) = 0; virtual bool OnSpawnedEntity (cWorld & a_World, cEntity & a_Entity) = 0; virtual bool OnSpawnedMonster (cWorld & a_World, cMonster & a_Monster) = 0; virtual bool OnSpawningEntity (cWorld & a_World, cEntity & a_Entity) = 0; |