From: MrBougo Date: Sat, 17 Aug 2013 14:15:40 +0000 (+0200) Subject: fix typo in mapinfo generation X-Git-Tag: xonotic-v0.8.0~296^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6515b8fcf545379da799452ab82cfd630affb523;p=xonotic%2Fxonotic-data.pk3dir.git fix typo in mapinfo generation vehicle maps had "has weapons" added in place of "has vehicles" --- diff --git a/qcsrc/common/mapinfo.qc b/qcsrc/common/mapinfo.qc index 7570393f4..b1adf0dba 100644 --- a/qcsrc/common/mapinfo.qc +++ b/qcsrc/common/mapinfo.qc @@ -912,7 +912,7 @@ float MapInfo_Get_ByName_NoFallbacks(string pFilename, float pAllowGenerate, flo else fputs(fh, "// uncomment this if you added turrets: has turrets\n"); if(MapInfo_Map_supportedFeatures & MAPINFO_FEATURE_VEHICLES) - fputs(fh, "has weapons\n"); + fputs(fh, "has vehicles\n"); else fputs(fh, "// uncomment this if you added vehicles: has vehicles\n"); if(MapInfo_Map_flags & MAPINFO_FLAG_FRUSTRATING)