From 6515b8fcf545379da799452ab82cfd630affb523 Mon Sep 17 00:00:00 2001 From: MrBougo Date: Sat, 17 Aug 2013 16:15:40 +0200 Subject: [PATCH] fix typo in mapinfo generation vehicle maps had "has weapons" added in place of "has vehicles" --- qcsrc/common/mapinfo.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2