diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-01-07 18:09:57 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-01-07 18:09:57 +0100 |
commit | 01fcf2fecb1f65f2f5d120ecea9196d21e91060a (patch) | |
tree | 99ccd42afe1a4eadb2633f22057e40af43599400 /src/Server.h | |
parent | Plugin messages are received and handed to plugins. (diff) | |
parent | Fixed favicons (diff) | |
download | cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.tar cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.tar.gz cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.tar.bz2 cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.tar.lz cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.tar.xz cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.tar.zst cuberite-01fcf2fecb1f65f2f5d120ecea9196d21e91060a.zip |
Diffstat (limited to 'src/Server.h')
-rw-r--r-- | src/Server.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Server.h b/src/Server.h index 2609b6874..d79417fb0 100644 --- a/src/Server.h +++ b/src/Server.h @@ -107,7 +107,8 @@ public: // tolua_export /// 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); - const AString & GetFaviconData(void) const; + /* Returns base64 encoded favicon data (obtained from favicon.png) */ + const AString & GetFaviconData(void) const { return m_FaviconData; } CryptoPP::RSA::PrivateKey & GetPrivateKey(void) { return m_PrivateKey; } CryptoPP::RSA::PublicKey & GetPublicKey (void) { return m_PublicKey; } |