Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fr34kyn01535 committed Dec 23, 2015
1 parent 017d49b commit 213cf5d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CommandPermit.cs
Expand Up @@ -16,13 +16,15 @@ namespace ZaupWhitelist
{
public class CommandPermit : IRocketCommand
{
public bool AllowFromConsole

public AllowedCaller AllowedCaller
{
get
{
return true;
return AllowedCaller.Both;
}
}

public string Name
{
get
Expand Down
4 changes: 2 additions & 2 deletions CommandUnpermit.cs
Expand Up @@ -16,11 +16,11 @@ namespace ZaupWhitelist
{
public class CommandUnpermit : IRocketCommand
{
public bool AllowFromConsole
public AllowedCaller AllowedCaller
{
get
{
return true;
return AllowedCaller.Both;
}
}
public string Name
Expand Down
Binary file modified lib/Assembly-CSharp.dll
Binary file not shown.
Binary file modified lib/Rocket.API.dll
Binary file not shown.
Binary file modified lib/Rocket.Core.dll
Binary file not shown.
Binary file modified lib/Rocket.Unturned.dll
Binary file not shown.

0 comments on commit 213cf5d

Please sign in to comment.