summaryrefslogtreecommitdiffstats
path: root/source/Server.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-14 19:11:54 +0200
committermadmaxoft <github@xoft.cz>2013-08-14 19:11:54 +0200
commit17b2353d71c405bc626de22e5467d13be792c317 (patch)
tree6684622247b5c921439bffec3671582cc67fd499 /source/Server.h
parentFixed crashes in world's clientlist manipulators (diff)
downloadcuberite-17b2353d71c405bc626de22e5467d13be792c317.tar
cuberite-17b2353d71c405bc626de22e5467d13be792c317.tar.gz
cuberite-17b2353d71c405bc626de22e5467d13be792c317.tar.bz2
cuberite-17b2353d71c405bc626de22e5467d13be792c317.tar.lz
cuberite-17b2353d71c405bc626de22e5467d13be792c317.tar.xz
cuberite-17b2353d71c405bc626de22e5467d13be792c317.tar.zst
cuberite-17b2353d71c405bc626de22e5467d13be792c317.zip
Diffstat (limited to '')
-rw-r--r--source/Server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Server.h b/source/Server.h
index 87e472465..b4fe81d8f 100644
--- a/source/Server.h
+++ b/source/Server.h
@@ -81,8 +81,8 @@ public: // tolua_export
/// Notifies the server that a player was created; the server uses this to adjust the number of players
void PlayerCreated(const cPlayer * a_Player);
- /// Notifies the server that a player was destroyed; the server uses this to adjust the number of players
- void PlayerDestroyed(const cPlayer * a_Player);
+ /// Notifies the server that a player is being destroyed; the server uses this to adjust the number of players
+ void PlayerDestroying(const cPlayer * a_Player);
CryptoPP::RSA::PrivateKey & GetPrivateKey(void) { return m_PrivateKey; }
CryptoPP::RSA::PublicKey & GetPublicKey (void) { return m_PublicKey; }