From: terencehill Date: Tue, 20 Sep 2016 16:39:26 +0000 (+0200) Subject: Remove an unused string X-Git-Tag: xonotic-v0.8.2~572 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=d9dd585c5ead71bfbf94ac76c0b3f170bce85ae5;p=xonotic%2Fxonotic-data.pk3dir.git Remove an unused string --- diff --git a/qcsrc/server/mapvoting.qc b/qcsrc/server/mapvoting.qc index 61e5013f6..29768893a 100644 --- a/qcsrc/server/mapvoting.qc +++ b/qcsrc/server/mapvoting.qc @@ -14,7 +14,6 @@ float mapvote_nextthink; float mapvote_keeptwotime; float mapvote_timeout; -string mapvote_message; const float MAPVOTE_SCREENSHOT_DIRS_COUNT = 4; string mapvote_screenshot_dirs[MAPVOTE_SCREENSHOT_DIRS_COUNT]; float mapvote_screenshot_dirs_count; @@ -255,7 +254,6 @@ void MapVote_Init() mapvote_timeout = time + autocvar_g_maplist_votable_timeout; if(mapvote_count_real < 3 || mapvote_keeptwotime <= time) mapvote_keeptwotime = 0; - mapvote_message = "Choose a map and press its key!"; MapVote_Spawn(); } @@ -561,7 +559,6 @@ float MapVote_CheckRules_2() { float didntvote; MapVote_TouchMask(); - mapvote_message = "Now decide between the TOP TWO!"; mapvote_keeptwotime = 0; result = strcat(":vote:keeptwo:", mapvote_maps[firstPlace]); result = strcat(result, ":", ftos(firstPlaceVotes));