From 43ddf14998f6e678aa0853526e4e5466e6b2a38f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 9 Jul 2015 12:39:51 +0200 Subject: [PATCH] rename internal API for consistency --- OpenRA.Mods.Common/Scripting/Global/CoordinateGlobals.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.Common/Scripting/Global/CoordinateGlobals.cs b/OpenRA.Mods.Common/Scripting/Global/CoordinateGlobals.cs index 6fa8accb8a..95882da41e 100644 --- a/OpenRA.Mods.Common/Scripting/Global/CoordinateGlobals.cs +++ b/OpenRA.Mods.Common/Scripting/Global/CoordinateGlobals.cs @@ -60,9 +60,9 @@ namespace OpenRA.Mods.Common.Scripting } [ScriptGlobal("WDist")] - public class WRangeGlobal : ScriptGlobal + public class WDistGlobal : ScriptGlobal { - public WRangeGlobal(ScriptContext context) : base(context) { } + public WDistGlobal(ScriptContext context) : base(context) { } [Desc("Create a new WDist.")] public WDist New(int r) { return new WDist(r); }