Skip to content

Commit 7e0d313

Browse files
committed
Renamed GetData.cs to GetPosition.cs
1 parent c03287d commit 7e0d313

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

UncomplicatedCustomEscapeZones/Commands/CommandParent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public sealed override void LoadGeneratedCommands()
2828
{
2929
RegisteredCommands.Add(new Reload());
3030
RegisteredCommands.Add(new Outline());
31-
RegisteredCommands.Add(new GetData());
31+
RegisteredCommands.Add(new GetPosition());
3232
}
3333

3434
protected override bool ExecuteParent(ArraySegment<string> arguments, ICommandSender sender, out string response)

UncomplicatedCustomEscapeZones/Commands/GetData.cs renamed to UncomplicatedCustomEscapeZones/Commands/GetPosition.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
namespace UncomplicatedEscapeZones.Commands;
99

10-
public class GetData : IUCEZCommand
10+
public class GetPosition : IUCEZCommand
1111
{
12-
public string Name { get; } = "getdata";
12+
public string Name { get; } = "getposition";
1313

1414
public string Description { get; } = "Gets the current position from the Room's origin and the Room's name.";
1515

16-
public string RequiredPermission { get; } = "ucez.getdata";
16+
public string RequiredPermission { get; } = "ucez.getposition";
1717

1818
public bool Executor(List<string> arguments, ICommandSender sender, out string response)
1919
{

UncomplicatedCustomEscapeZones/UncomplicatedCustomEscapeZones.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<Compile Include="API\Features\SummonedEscapeZone.cs"/>
8282
<Compile Include="API\Struct\Triplet.cs"/>
8383
<Compile Include="Commands\CommandParent.cs"/>
84-
<Compile Include="Commands\GetData.cs"/>
84+
<Compile Include="Commands\GetPosition.cs" />
8585
<Compile Include="Commands\Outline.cs"/>
8686
<Compile Include="Commands\Reload.cs"/>
8787
<Compile Include="Config.cs"/>

0 commit comments

Comments
 (0)