Skip to content

Commit 9a5bede

Browse files
authored
fix BreakDoors.cs (Exiled-Team#90)
1 parent 49d9d3a commit 9a5bede

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

AdminTools/AdminTools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<ItemGroup>
6262
<Compile Include="Commands\Ahp.cs" />
6363
<Compile Include="Commands\Ball.cs" />
64-
<Compile Include="Commands\BreakDoor\BreakDoors.cs" />
64+
<Compile Include="Commands\BreakDoors.cs" />
6565
<Compile Include="Commands\DropItem.cs" />
6666
<Compile Include="Commands\DropSize.cs" />
6767
<Compile Include="Commands\Enums.cs" />

AdminTools/Commands/BreakDoor/BreakDoors.cs renamed to AdminTools/Commands/BreakDoors.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out s
2727
return false;
2828
}
2929

30-
if (arguments.Count > 0)
30+
if (arguments.Count == 0)
3131
{
3232
response = "Usage: breakdoors (all / *) [IsEnable]";
3333
return false;

0 commit comments

Comments
 (0)