From: MirceaKitsune Date: Fri, 3 Sep 2010 12:44:38 +0000 (+0300) Subject: In RPG, there should be no time limit by default. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b534b6db9e3cc402428130badf33b118dbf68d1f;p=voretournament%2Fvoretournament.git In RPG, there should be no time limit by default. --- diff --git a/data/maps/voretown.mapinfo b/data/maps/voretown.mapinfo index 5a3b9018..081ebc29 100644 --- a/data/maps/voretown.mapinfo +++ b/data/maps/voretown.mapinfo @@ -3,4 +3,4 @@ description A medieval temple author MirceaKitsune //cdtrack stone_fortress has weapons -type rpg 20 \ No newline at end of file +type rpg 0 \ No newline at end of file diff --git a/data/qcsrc/common/mapinfo.qc b/data/qcsrc/common/mapinfo.qc index 7f8c04ec..9c5c6bc8 100644 --- a/data/qcsrc/common/mapinfo.qc +++ b/data/qcsrc/common/mapinfo.qc @@ -656,7 +656,7 @@ float MapInfo_Get_ByName(string pFilename, float pAllowGenerate, float pGametype if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_RACE) fputs(fh, "type rc 20 5 7 15\n"); if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_ONSLAUGHT) fputs(fh, "type ons 20\n"); if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_CTS) fputs(fh, "type cts 20 -1\n"); - if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_RPG) fputs(fh, "type rpg -1\n"); + if(MapInfo_Map_supportedGametypes & MAPINFO_TYPE_RPG) fputs(fh, "type rpg 0\n"); fh2 = fopen(strcat("scripts/", pFilename, ".arena"), FILE_READ); if(fh2 >= 0)