]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix typo in mapinfo generation
authorMrBougo <mrbougo@xonotic.org>
Sat, 17 Aug 2013 14:15:40 +0000 (16:15 +0200)
committerMrBougo <mrbougo@xonotic.org>
Sat, 17 Aug 2013 14:15:40 +0000 (16:15 +0200)
vehicle maps had "has weapons" added in place of "has vehicles"

qcsrc/common/mapinfo.qc

index 7570393f4871669d6a649b396e15777e5b5b7f2d..b1adf0dba0290520eebdb2c2269ca9fddcc8ca17 100644 (file)
@@ -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)