diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 08:26:36 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 08:26:36 +0000 |
| commit | 2e2d31ccc359228f0031b9fa507b33f8ba935722 (patch) | |
| tree | 90f7270a696e7f47238c2945f91381af485c5ac4 /src/game/client/components/motd.hpp | |
| parent | 71fa35606c268594f8cf4c52626057f86861c3de (diff) | |
| download | zcatch-2e2d31ccc359228f0031b9fa507b33f8ba935722.tar.gz zcatch-2e2d31ccc359228f0031b9fa507b33f8ba935722.zip | |
fixed the motd correctly
Diffstat (limited to 'src/game/client/components/motd.hpp')
| -rw-r--r-- | src/game/client/components/motd.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/client/components/motd.hpp b/src/game/client/components/motd.hpp index e26dff9b..bc2c962e 100644 --- a/src/game/client/components/motd.hpp +++ b/src/game/client/components/motd.hpp @@ -2,10 +2,12 @@ class MOTD : public COMPONENT { -public: // motd int64 server_motd_time; char server_motd[900]; // FUGLY +public: + void clear(); + bool is_active(); virtual void on_reset(); virtual void on_render(); |