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); }