dont check permission if permission is null

This commit is contained in:
ajgeiss0702
2021-08-29 09:28:05 -07:00
parent b9aa10d984
commit d5cdc9afc0
2 changed files with 2 additions and 0 deletions
@@ -17,6 +17,7 @@ public class VelocitySender implements ICommandSender {
@Override
public boolean hasPermission(String permission) {
if(permission == null) return true;
return handle.hasPermission(permission);
}