don't swap these two around

This commit is contained in:
Andrew Steinborn
2021-03-23 07:38:07 -04:00
parent 3111816545
commit 0cc300b621
2 changed files with 5 additions and 3 deletions

View File

@@ -237,8 +237,9 @@ public class LoginSessionHandler implements MinecraftSessionHandler {
logger.error(
"A plugin permission provider {} provided an invalid permission function"
+ " for player {}. This is a bug in the plugin, not in Velocity. Falling"
+ " back to the default permission function.", player.getUsername(),
event.getProvider());
+ " back to the default permission function.",
event.getProvider().getClass().getName(),
player.getUsername());
} else {
player.setPermissionFunction(function);
}

View File

@@ -69,7 +69,8 @@ public final class VelocityConsole extends SimpleTerminalConsole implements Cons
logger.error(
"A plugin permission provider {} provided an invalid permission function"
+ " for the console. This is a bug in the plugin, not in Velocity. Falling"
+ " back to the default permission function.", event.getProvider());
+ " back to the default permission function.",
event.getProvider().getClass().getName());
this.permissionFunction = ALWAYS_TRUE;
}
}