From b534b6db9e3cc402428130badf33b118dbf68d1f Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Fri, 3 Sep 2010 15:44:38 +0300 Subject: [PATCH] In RPG, there should be no time limit by default. --- data/maps/voretown.mapinfo | 2 +- data/qcsrc/common/mapinfo.qc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) -- 2.39.2