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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user