Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate default map previews and yaml formatting #16448

Merged
merged 10 commits into from May 2, 2019
Merged
4 changes: 4 additions & 0 deletions OpenRA.Game/Map/Map.cs
Expand Up @@ -566,6 +566,10 @@ public void Save(IReadWritePackage toPackage)
foreach (var field in YamlFields)
field.Serialize(this, root);

// HACK: map.yaml is expected to have empty lines between top-level blocks
for (var i = root.Count - 1; i > 0; i--)
root.Insert(i, new MiniYamlNode("", ""));

// Saving to a new package: copy over all the content from the map
if (Package != null && toPackage != Package)
foreach (var file in Package.Contents)
Expand Down
3 changes: 2 additions & 1 deletion OpenRA.Game/MiniYaml.cs
Expand Up @@ -28,7 +28,8 @@ public static void WriteToFile(this MiniYamlNodes y, string filename)

public static string WriteToString(this MiniYamlNodes y)
{
return y.ToLines().JoinWith("\n");
// Remove all trailing newlines and restore the final EOF newline
return y.ToLines().JoinWith("\n").TrimEnd('\n') + "\n";
}

public static IEnumerable<string> ToLines(this MiniYamlNodes y)
Expand Down
1 change: 1 addition & 0 deletions OpenRA.Mods.Common/OpenRA.Mods.Common.csproj
Expand Up @@ -633,6 +633,7 @@
<Compile Include="UtilityCommands\ExtractZeroBraneStudioLuaAPI.cs" />
<Compile Include="UtilityCommands\ExtractTraitDocsCommand.cs" />
<Compile Include="UtilityCommands\ExtractWeaponDocsCommand.cs" />
<Compile Include="UtilityCommands\RefreshMapCommand.cs" />
<Compile Include="Warheads\ChangeOwnerWarhead.cs" />
<Compile Include="UtilityCommands\PngSheetExportMetadataCommand.cs" />
<Compile Include="UtilityCommands\PngSheetImportMetadataCommand.cs" />
Expand Down
35 changes: 35 additions & 0 deletions OpenRA.Mods.Common/UtilityCommands/RefreshMapCommand.cs
@@ -0,0 +1,35 @@
#region Copyright & License Information
/*
* Copyright 2007-2019 The OpenRA Developers (see AUTHORS)
* This file is part of OpenRA, which is free software. It is made
* available to you under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version. For more
* information, see COPYING.
*/
#endregion

using OpenRA.FileSystem;

namespace OpenRA.Mods.Common.UtilityCommands
{
class RefreshMapCommand : IUtilityCommand
{
string IUtilityCommand.Name { get { return "--refresh-map"; } }

bool IUtilityCommand.ValidateArguments(string[] args)
{
return args.Length >= 2;
}

[Desc("MAP", "Opens and resaves a map to reformat map.yaml and regenerate the preview.")]
void IUtilityCommand.Run(Utility utility, string[] args)
{
// HACK: The engine code assumes that Game.modData is set.
// HACK: We know that maps can only be oramap or folders, which are ReadWrite
var modData = Game.ModData = utility.ModData;
using (var package = new Folder(".").OpenPackage(args[1], modData.ModFiles))
new Map(modData, package).Save((IReadWritePackage)package);
}
}
}
3 changes: 2 additions & 1 deletion OpenRA.Test/OpenRA.Game/MiniYamlTest.cs
Expand Up @@ -269,7 +269,8 @@ public void CommentsShouldntSurviveRoundTrip()

var strippedYaml = @"Parent:
First: value containing a \# character
Second: value".Replace("\r\n", "\n");
Second: value
".Replace("\r\n", "\n");

var result = MiniYaml.FromString(yaml).WriteToString();
Assert.AreEqual(strippedYaml, result);
Expand Down
2 changes: 1 addition & 1 deletion mods/cnc/chrome/color-picker.yaml
Expand Up @@ -135,4 +135,4 @@ Background@COLOR_CHOOSER:
Y: 0
Width: 27
Height: 27
Visible: false
Visible: false
2 changes: 1 addition & 1 deletion mods/cnc/chrome/editor.yaml
Expand Up @@ -618,4 +618,4 @@ ScrollPanel@COPY_FILTER_PANEL:
Y: 5
Width: PARENT_RIGHT - 29
Height: 20
Visible: false
Visible: false
2 changes: 1 addition & 1 deletion mods/cnc/chrome/settings.yaml
Expand Up @@ -581,7 +581,7 @@ Container@SETTINGS_PANEL:
Width: PARENT_RIGHT
Height: 20
Font: Regular
Text: Additional developer-specific options can be enabled via the
Text: Additional developer-specific options can be enabled via the
Align: Center
Label@B:
Y: 20
Expand Down
Binary file modified mods/cnc/maps/16-9.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/aggressive-tendencies.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/alpha-juno-5.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/antrax.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/arcade.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/avocado.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/axis-of-advance.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/back-to-basics.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/blank-shellmap/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/cnc/maps/blood-and-sand.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/botany.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/break-of-day.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/burning-hammer.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/carters-ridge.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/chill-out.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/chokepoint.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/collateral-chaos.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/contra.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/control-and-chaos.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/crossing-the-divide.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/dead-in-motion.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/desert-lakes.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/desert-rats-cnc/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/cnc/maps/desert-storm-3.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/deterring-democracy-plus.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/deterring-democracy.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/dualism.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/east-vs-west-3.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/escalations.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/frigid-pass.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/frostways.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/haos-ridges-cnc.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/hattrix.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/hegemony-or-survival.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/island-duel.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/jungle-conflict.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/kolosseum.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/letters-from-lexington.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/lost-souls.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/manufacturing-consent.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/media-control.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/model-150.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/model-200.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/morbid-aimless-poseidon.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/mt-nukebait.oramap
Binary file not shown.
3 changes: 1 addition & 2 deletions mods/cnc/maps/nod10a/map.yaml
Expand Up @@ -1342,5 +1342,4 @@ Actors:
Location: 5,47
Owner: Neutral


Rules: cnc|rules/campaign-maprules.yaml, cnc|rules/campaign-tooltips.yaml, cnc|rules/campaign-palettes.yaml, rules.yaml
Rules: cnc|rules/campaign-maprules.yaml, cnc|rules/campaign-tooltips.yaml, cnc|rules/campaign-palettes.yaml, rules.yaml
2 changes: 2 additions & 0 deletions mods/cnc/maps/nod10b/map.yaml
Expand Up @@ -16,6 +16,8 @@ Visibility: MissionSelector

Categories: Campaign

LockPreview: True

Players:
PlayerReference@Neutral:
Name: Neutral
Expand Down
Binary file modified mods/cnc/maps/order-of-battle.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/ping-pong-bay.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/pirates-and-emperors.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/plan-b.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/pressure-cnc.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/reasonable-doubt.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/riverside-frontline.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/scorched-earth.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/sustain.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/tactical-advance.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/thawed-front.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/the-hot-box/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/cnc/maps/the-new-mandarins.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/tiberian-falls.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/tiberian-war.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/tiberium-canopy.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/tiberium-garden-2.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/too-hot.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/trial-of-possession.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/tropic-expanse.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/twin-lakes.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/twisted-peak.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/two-ponds.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/understanding-power.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/valley-of-gold.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/vectors-of-battle.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/warchild.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/warkraft.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/winters-end.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/x896.oramap
Binary file not shown.
Binary file modified mods/cnc/maps/year-501.oramap
Binary file not shown.
2 changes: 1 addition & 1 deletion mods/common/chrome/color-picker.yaml
Expand Up @@ -135,4 +135,4 @@ Background@COLOR_CHOOSER:
Y: 0
Width: 29
Height: 29
Visible: false
Visible: false
2 changes: 1 addition & 1 deletion mods/common/chrome/editor.yaml
Expand Up @@ -598,4 +598,4 @@ ScrollPanel@COPY_FILTER_PANEL:
Y: 5
Width: PARENT_RIGHT - 29
Height: 20
Visible: false
Visible: false
4 changes: 2 additions & 2 deletions mods/common/chrome/settings.yaml
Expand Up @@ -592,7 +592,7 @@ Background@SETTINGS_PANEL:
Width: PARENT_RIGHT
Height: 20
Font: Regular
Text: Additional developer-specific options can be enabled via the
Text: Additional developer-specific options can be enabled via the
Align: Center
Label@B:
Y: 20
Expand Down Expand Up @@ -646,4 +646,4 @@ Background@SETTINGS_PANEL:
Width: 300
Height: 20
Font: Regular
Text: Strict Activity checking
Text: Strict Activity checking
Binary file modified mods/d2k/maps/arakeen.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/battle-for-dune.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/carthag.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/cave-of-birds.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/cave-of-riches.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/chin-rock.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/cliffmaze.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/death-depths.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/desert-twister.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/eyesofthedesert.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/gara-kulon.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/habbanya-erg.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/habbanya-ridge.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/hallecks-ridge.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/imperial-basin.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/jacarutu.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/kanly.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/letos-erg.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/lynch-pass.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/mauddibs-cave.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/mount-idaho/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/d2k/maps/mount-irulan.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/oasis-conquest/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/d2k/maps/oh-gap.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/pasty-mesa/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/d2k/maps/red-chasm.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/shellmap/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/d2k/maps/sietch-tabr.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/tenaya.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/the-duell.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/the-funeral-plain.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/the-great-flat.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/the-minor-erg.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/the-shield-wall.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/thufirs-point.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/tsimpo.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/tucks-sietch.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/venac-ditch.oramap
Binary file not shown.
Binary file modified mods/d2k/maps/vladimirs-folly.oramap
Binary file not shown.
Binary file modified mods/ra/maps/Siberian-Pass.oramap
Binary file not shown.
Binary file modified mods/ra/maps/a-nuclear-winter/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/a-path-beyond.oramap
Binary file not shown.
Binary file modified mods/ra/maps/agenda.oramap
Binary file not shown.
Binary file modified mods/ra/maps/alaska-anarchy-redux.oramap
Binary file not shown.
Binary file modified mods/ra/maps/all-connected.oramap
Binary file not shown.
2 changes: 1 addition & 1 deletion mods/ra/maps/ant-01/map.yaml
Expand Up @@ -43,7 +43,7 @@ Players:
Enemies: AntMan
Color: F6D679
PlayerReference@AntMan:
Name: AntMan
Name: AntMan
Faciton: soviet
Enemies: Spain, Creeps
Bot: campaign
Expand Down
Binary file modified mods/ra/maps/ascent.oramap
Binary file not shown.
Binary file modified mods/ra/maps/asymmetric-battle.oramap
Binary file not shown.
Binary file modified mods/ra/maps/barracuda.oramap
Binary file not shown.
Binary file modified mods/ra/maps/behind-the-veil.oramap
Binary file not shown.
Binary file modified mods/ra/maps/bombardment-islands.oramap
Binary file not shown.
Binary file modified mods/ra/maps/bomber-john/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/caffeinated.oramap
Binary file not shown.
Binary file modified mods/ra/maps/center-of-attention-redux-2/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/chaos-canyon.oramap
Binary file not shown.
Binary file modified mods/ra/maps/coastal-influence.oramap
Binary file not shown.
Binary file modified mods/ra/maps/cold-front.oramap
Binary file not shown.
Binary file modified mods/ra/maps/countercross.oramap
Binary file not shown.
Binary file modified mods/ra/maps/crossfire.oramap
Binary file not shown.
Binary file modified mods/ra/maps/decrepit-isles.oramap
Binary file not shown.
Binary file modified mods/ra/maps/desert-rats/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/desert-shellmap/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/doubles.oramap
Binary file not shown.
Binary file modified mods/ra/maps/doublestep.oramap
Binary file not shown.
Binary file modified mods/ra/maps/doughnut.oramap
Binary file not shown.
Binary file modified mods/ra/maps/drop-zone-battle-of-tikiaki/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/drop-zone-w/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/drop-zone/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/dual-cold-front.oramap
Binary file not shown.
Binary file modified mods/ra/maps/east-vs-west.oramap
Binary file not shown.
Binary file modified mods/ra/maps/encounter.oramap
Binary file not shown.
Binary file modified mods/ra/maps/engagement.oramap
Binary file not shown.
Binary file modified mods/ra/maps/ensio-kaivo.oramap
Binary file not shown.
2 changes: 2 additions & 0 deletions mods/ra/maps/evacuation/map.yaml
Expand Up @@ -16,6 +16,8 @@ Visibility: Lobby, MissionSelector

Categories: Mission, Cooperative Mission

LockPreview: True

Players:
PlayerReference@Neutral:
Name: Neutral
Expand Down
2 changes: 2 additions & 0 deletions mods/ra/maps/exodus/map.yaml
Expand Up @@ -16,6 +16,8 @@ Visibility: Lobby, MissionSelector

Categories: Mission, Cooperative Mission

LockPreview: True

Players:
PlayerReference@Neutral:
Name: Neutral
Expand Down
Binary file modified mods/ra/maps/fort-lonestar/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/great-sahara-2.oramap
Binary file not shown.
Binary file modified mods/ra/maps/green-belt.oramap
Binary file not shown.
Binary file modified mods/ra/maps/haos-ridges.oramap
Binary file not shown.
Binary file modified mods/ra/maps/hypothermia.oramap
Binary file not shown.
Binary file modified mods/ra/maps/icy-ridge.oramap
Binary file not shown.
Binary file modified mods/ra/maps/imminent-destruction.oramap
Binary file not shown.
2 changes: 2 additions & 0 deletions mods/ra/maps/infiltration/map.yaml
Expand Up @@ -16,6 +16,8 @@ Visibility: Lobby, MissionSelector

Categories: Mission, Cooperative Mission

LockPreview: True

Players:
PlayerReference@Neutral:
Name: Neutral
Expand Down
Binary file modified mods/ra/maps/jungle-law.oramap
Binary file not shown.
Binary file modified mods/ra/maps/keep-off-the-grass-2.oramap
Binary file not shown.
Binary file modified mods/ra/maps/mad-science.oramap
Binary file not shown.
Binary file modified mods/ra/maps/maelstrom.oramap
Binary file not shown.
Binary file modified mods/ra/maps/mass-confliction.oramap
Binary file not shown.
Binary file modified mods/ra/maps/minor-pressure.oramap
Binary file not shown.
Binary file modified mods/ra/maps/nine-lives.oramap
Binary file not shown.
Binary file modified mods/ra/maps/north-by-northwest.oramap
Binary file not shown.
Binary file modified mods/ra/maps/northwestpassage.oramap
Binary file not shown.
Binary file modified mods/ra/maps/operation-goldmine.oramap
Binary file not shown.
Binary file modified mods/ra/maps/opposite-force.oramap
Binary file not shown.
Binary file modified mods/ra/maps/ore-gardens.oramap
Binary file not shown.
Binary file modified mods/ra/maps/ore-lord.oramap
Binary file not shown.
Binary file modified mods/ra/maps/outdoor-trails.oramap
Binary file not shown.
Binary file modified mods/ra/maps/pie-of-animosity.oramap
Binary file not shown.
Binary file modified mods/ra/maps/pitfight.oramap
Binary file not shown.
Binary file modified mods/ra/maps/poland-raid/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/polar-disorder.oramap
Binary file not shown.
Binary file modified mods/ra/maps/pool-party.oramap
Binary file not shown.
Binary file modified mods/ra/maps/pressure.oramap
Binary file not shown.
Binary file modified mods/ra/maps/puddles-redux.oramap
Binary file not shown.
Binary file modified mods/ra/maps/rapa-nui/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/regeneration-basin.oramap
Binary file not shown.
2 changes: 2 additions & 0 deletions mods/ra/maps/sarin-gas-2-down-under/map.yaml
Expand Up @@ -16,6 +16,8 @@ Visibility: MissionSelector

Categories: Mission

LockPreview: True

Players:
PlayerReference@Neutral:
Name: Neutral
Expand Down
Binary file modified mods/ra/maps/shattered-mountain/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ra/maps/sidestep.oramap
Binary file not shown.
Binary file modified mods/ra/maps/singles.oramap
Binary file not shown.
Binary file modified mods/ra/maps/six-below-zero/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed mods/ra/maps/snow town/map.png
Binary file not shown.
Binary file modified mods/ra/maps/snow-off/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
Binary file added mods/ra/maps/snow-town/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
Binary file modified mods/ra/maps/sudden-death.oramap
Binary file not shown.
Binary file modified mods/ra/maps/sunstroke.oramap
Binary file not shown.
Binary file modified mods/ra/maps/synergy.oramap
Binary file not shown.
Binary file modified mods/ra/maps/tabula-rasa.oramap
Binary file not shown.
Binary file modified mods/ra/maps/tainted-peak.oramap
Binary file not shown.
Binary file modified mods/ra/maps/tandem.oramap
Binary file not shown.
Binary file modified mods/ra/maps/temperal.oramap
Binary file not shown.
Binary file modified mods/ra/maps/tournament-island.oramap
Binary file not shown.
Binary file modified mods/ra/maps/unconventional-warfare.oramap
Binary file not shown.
Binary file modified mods/ra/maps/union-sacree.oramap
Binary file not shown.
Binary file modified mods/ra/maps/vegetation.oramap
Binary file not shown.
Binary file modified mods/ra/maps/vihaan-lunta.oramap
Binary file not shown.
Binary file modified mods/ra/maps/warwind.oramap
Binary file not shown.
Binary file modified mods/ra/maps/winter-storm.oramap
Binary file not shown.
Binary file modified mods/ra/maps/x-lake.oramap
Binary file not shown.
Binary file modified mods/ra/maps/ysmir.oramap
Binary file not shown.
1 change: 0 additions & 1 deletion mods/ra/rules/infantry.yaml
Expand Up @@ -833,4 +833,3 @@ WarriorAnt:
Prerequisites: ~disabled
RenderSprites:
Image: Ant

2 changes: 1 addition & 1 deletion mods/ts/chrome/color-picker.yaml
Expand Up @@ -136,4 +136,4 @@ Background@COLOR_CHOOSER:
Y: 0
Width: 29
Height: 29
Visible: false
Visible: false
Binary file modified mods/ts/maps/1ice6/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ts/maps/2temp7/map.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified mods/ts/maps/ThePit/map.png
Binary file modified mods/ts/maps/arivruns/map.png
Binary file modified mods/ts/maps/cliffsin/map.png
Binary file modified mods/ts/maps/drawbrid/map.png
Binary file modified mods/ts/maps/fields-of-green/map.png
2 changes: 1 addition & 1 deletion mods/ts/maps/fields-of-green/map.yaml
Expand Up @@ -1419,4 +1419,4 @@ Actors:
Owner: Neutral
Location: 45,6

Rules: rules.yaml
Rules: rules.yaml
Binary file modified mods/ts/maps/float/map.png
Binary file modified mods/ts/maps/forestfr/map.png
Binary file modified mods/ts/maps/karasjok/map.png
Binary file modified mods/ts/maps/ot11/map.png
Binary file modified mods/ts/maps/rivrrad4/map.png
Binary file modified mods/ts/maps/springs/map.png
Binary file modified mods/ts/maps/sunstroke/map.png
Binary file modified mods/ts/maps/t_garden/map.png
Binary file modified mods/ts/maps/tactical/map.png
Binary file modified mods/ts/maps/terrace/map.png
Binary file modified mods/ts/maps/tiers/map.png
Binary file modified mods/ts/maps/tread_l/map.png
Binary file modified mods/ts/maps/ts_rift/map.png
Binary file modified mods/ts/maps/uganda/map.png