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/PluginLua.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 '')
-rw-r--r-- | src/Bindings/PluginLua.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bindings/PluginLua.h b/src/Bindings/PluginLua.h index 185b2a887..549045849 100644 --- a/src/Bindings/PluginLua.h +++ b/src/Bindings/PluginLua.h @@ -117,7 +117,7 @@ public: virtual bool OnPreCrafting (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe) override; virtual bool OnProjectileHitBlock (cProjectileEntity & a_Projectile, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_Face, const Vector3d & a_BlockHitPos) override; virtual bool OnProjectileHitEntity (cProjectileEntity & a_Projectile, cEntity & a_HitEntity) override; - virtual bool OnServerPing (AString & a_Motd, int & a_OnlinePlayersCount, int & a_MaxPlayersCount, AString & a_Favicon) override; + virtual bool OnServerPing (cClientHandle & a_ClientHandle, AString & a_Motd, int & a_OnlinePlayersCount, int & a_MaxPlayersCount, AString & a_Favicon) override; virtual bool OnSpawnedEntity (cWorld & a_World, cEntity & a_Entity) override; virtual bool OnSpawnedMonster (cWorld & a_World, cMonster & a_Monster) override; virtual bool OnSpawningEntity (cWorld & a_World, cEntity & a_Entity) override; |