]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/client/mapvoting.qc
Net: register all types
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / mapvoting.qc
index 3511c743f05b7478a6436c884775742962532b72..1acfa8042c11c0a23ac84771570607ea42965aee 100644 (file)
@@ -1,13 +1,9 @@
 #include "mapvoting.qh"
-#include "_all.qh"
 
 #include "hud.qh"
 #include "scoreboard.qh"
 
 #include "../common/mapinfo.qh"
-#include "../common/util.qh"
-
-#include "../dpdefs/keycodes.qh"
 
 
 int mv_num_maps;
@@ -630,8 +626,6 @@ void GameTypeVote_ReadOption(int i)
 
 void MapVote_Init()
 {
-       precache_sound ("misc/invshot.wav");
-
        mv_active = 1;
        if(autocvar_hud_cursormode) { setcursormode(1); }
        else { mv_mousepos = '0.5 0 0' * vid_conwidth + '0 0.5 0' * vid_conheight; }
@@ -859,6 +853,7 @@ void MapVote_UpdateVotes()
 
 void Ent_MapVote()
 {
+       make_pure(self);
        int sf = ReadByte();
 
        if(sf & 1)
@@ -871,6 +866,12 @@ void Ent_MapVote()
                MapVote_UpdateVotes();
 }
 
+NET_HANDLE(TE_CSQC_PICTURE, bool isNew)
+{
+       Net_MapVote_Picture();
+       return true;
+}
+
 void Net_MapVote_Picture()
 {
        int type = ReadByte();