summaryrefslogtreecommitdiffstats
path: root/src/Server.h
diff options
context:
space:
mode:
authorAlexander Harkness <bearbin@gmail.com>2014-01-07 18:09:57 +0100
committerAlexander Harkness <bearbin@gmail.com>2014-01-07 18:09:57 +0100
commit01fcf2fecb1f65f2f5d120ecea9196d21e91060a (patch)
tree99ccd42afe1a4eadb2633f22057e40af43599400 /src/Server.h
parentPlugin messages are received and handed to plugins. (diff)
parentFixed favicons (diff)
downloadcuberite-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.h3
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; }