From 9e47634d0fc18b91b4ded10f95f707ee0bceb013 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Fri, 26 Dec 2014 11:44:00 +1300 Subject: [PATCH] Fix public/static ordering. --- OpenRA.Mods.Common/Traits/Render/WithRotor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Render/WithRotor.cs b/OpenRA.Mods.Common/Traits/Render/WithRotor.cs index e1ac419f1e..a607a4e279 100644 --- a/OpenRA.Mods.Common/Traits/Render/WithRotor.cs +++ b/OpenRA.Mods.Common/Traits/Render/WithRotor.cs @@ -75,7 +75,7 @@ namespace OpenRA.Mods.Common.Traits rotorAnim.ReplaceAnim(isFlying ? info.Sequence : info.GroundSequence); } - static public int ZOffsetFromCenter(Actor self, WPos pos, int offset) + public static int ZOffsetFromCenter(Actor self, WPos pos, int offset) { var delta = self.CenterPosition - pos; return delta.Y + delta.Z + offset;