1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-20 02:33:15 +01:00

My OCD made me do it.

This commit is contained in:
gmcferrin
2013-01-09 23:03:17 -05:00
parent c60cbe824c
commit e193da2cd7
57 changed files with 276 additions and 276 deletions

View File

@@ -6,7 +6,7 @@ import org.bukkit.entity.Player;
public class Permissions {
public static boolean hasPermission(CommandSender sender, String perm)
{
if(sender.hasPermission(perm))
if (sender.hasPermission(perm))
return true;
return false;
@@ -14,7 +14,7 @@ public class Permissions {
public static boolean hasPermission(Player sender, String perm)
{
if(sender.hasPermission(perm))
if (sender.hasPermission(perm))
return true;
return false;