StyleCop clean OpenRA.Game

This commit is contained in:
Matthias Mailänder
2015-01-04 11:56:13 +01:00
parent d2d715765c
commit bc3acfeee7
345 changed files with 835 additions and 833 deletions

View File

@@ -26,7 +26,7 @@ namespace OpenRA.Mods.RA.Effects
public object Create(ActorInitializer init)
{
return new GpsDot(init.self, this);
return new GpsDot(init.Self, this);
}
}

2
OpenRA.Mods.RA/Effects/RepairIndicator.cs Executable file → Normal file
View File

@@ -47,7 +47,7 @@ namespace OpenRA.Mods.RA.Effects
public IEnumerable<IRenderable> Render(WorldRenderer wr)
{
if (building.Destroyed || wr.world.FogObscures(building) || rb.Repairers.Count == 0)
if (building.Destroyed || wr.World.FogObscures(building) || rb.Repairers.Count == 0)
return SpriteRenderable.None;
var palette = wr.Palette(palettePrefix + rb.Repairers[shownPlayer % rb.Repairers.Count].InternalName);