diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-11-08 12:50:46 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-11-08 12:50:46 +0000 |
| commit | 388a04d957a0fd9af9287cbe6f1ee905371886c7 (patch) | |
| tree | a493826c21bfca82dbd7b122d859025e0693c62e /src/game/client/gameclient.cpp | |
| parent | 4fa7806009ec4b6acfbf545e56d22e87ea5fa3f2 (diff) | |
| download | zcatch-388a04d957a0fd9af9287cbe6f1ee905371886c7.tar.gz zcatch-388a04d957a0fd9af9287cbe6f1ee905371886c7.zip | |
better voting support
Diffstat (limited to 'src/game/client/gameclient.cpp')
| -rw-r--r-- | src/game/client/gameclient.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/game/client/gameclient.cpp b/src/game/client/gameclient.cpp index 912a0c5d..dc5d4225 100644 --- a/src/game/client/gameclient.cpp +++ b/src/game/client/gameclient.cpp @@ -24,7 +24,6 @@ #include "components/killmessages.hpp" #include "components/mapimages.hpp" #include "components/maplayers.hpp" -#include "components/maplist.hpp" #include "components/menus.hpp" #include "components/motd.hpp" #include "components/particles.hpp" @@ -63,7 +62,6 @@ static PLAYERS players; static NAMEPLATES nameplates; static ITEMS items; static MAPIMAGES mapimages; -static MAPLIST maplist; static MAPLAYERS maplayers_background(MAPLAYERS::TYPE_BACKGROUND); static MAPLAYERS maplayers_foreground(MAPLAYERS::TYPE_FOREGROUND); @@ -110,7 +108,6 @@ void GAMECLIENT::on_console_init() damageind = &::damageind; mapimages = &::mapimages; voting = &::voting; - maplist = &::maplist; // make a list of all the systems, make sure to add them in the corrent render order all.add(skins); @@ -122,7 +119,6 @@ void GAMECLIENT::on_console_init() all.add(camera); all.add(sounds); all.add(voting); - all.add(maplist); all.add(particles); // doesn't render anything, just updates all the particles all.add(&maplayers_background); // first to render |