mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-23 19:16:37 +01:00
fix typo
This commit is contained in:
parent
5656bea3f9
commit
1cf90692cf
@ -134,7 +134,7 @@ public class BukkitConnectionListener extends AbstractConnectionListener impleme
|
||||
|
||||
if (!getUniqueConnections().contains(player.getUniqueId())) {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getName() +
|
||||
" doesn't have data pre-loaded, they have never need processed during pre-login in this session." +
|
||||
" doesn't have data pre-loaded, they have never been processed during pre-login in this session." +
|
||||
" - denying login.");
|
||||
} else {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getName() +
|
||||
|
@ -113,7 +113,7 @@ public class BungeeConnectionListener extends AbstractConnectionListener impleme
|
||||
if (user == null) {
|
||||
if (!getUniqueConnections().contains(player.getUniqueId())) {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getName() +
|
||||
" doesn't have data pre-loaded, they have never need processed during pre-login in this session.");
|
||||
" doesn't have data pre-loaded, they have never been processed during pre-login in this session.");
|
||||
} else {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getName() +
|
||||
" doesn't currently have data pre-loaded, but they have been processed before in this session.");
|
||||
|
@ -125,7 +125,7 @@ public class NukkitConnectionListener extends AbstractConnectionListener impleme
|
||||
|
||||
if (!getUniqueConnections().contains(player.getUniqueId())) {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getName() +
|
||||
" doesn't have data pre-loaded, they have never need processed during pre-login in this session." +
|
||||
" doesn't have data pre-loaded, they have never been processed during pre-login in this session." +
|
||||
" - denying login.");
|
||||
} else {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getName() +
|
||||
|
@ -132,7 +132,7 @@ public class SpongeConnectionListener extends AbstractConnectionListener {
|
||||
|
||||
if (!getUniqueConnections().contains(profile.getUniqueId())) {
|
||||
this.plugin.getLogger().warn("User " + profile.getUniqueId() + " - " + profile.getName() +
|
||||
" doesn't have data pre-loaded, they have never need processed during pre-login in this session." +
|
||||
" doesn't have data pre-loaded, they have never been processed during pre-login in this session." +
|
||||
" - denying login.");
|
||||
} else {
|
||||
this.plugin.getLogger().warn("User " + profile.getUniqueId() + " - " + profile.getName() +
|
||||
|
@ -126,7 +126,7 @@ public class VelocityConnectionListener extends AbstractConnectionListener {
|
||||
if (user == null) {
|
||||
if (!getUniqueConnections().contains(player.getUniqueId())) {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getUsername() +
|
||||
" doesn't have data pre-loaded, they have never need processed during pre-login in this session.");
|
||||
" doesn't have data pre-loaded, they have never been processed during pre-login in this session.");
|
||||
} else {
|
||||
this.plugin.getLogger().warn("User " + player.getUniqueId() + " - " + player.getUsername() +
|
||||
" doesn't currently have data pre-loaded, but they have been processed before in this session.");
|
||||
|
Loading…
Reference in New Issue
Block a user