This commit is contained in:
Luck 2018-09-21 21:53:06 +01:00
parent 5656bea3f9
commit 1cf90692cf
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
5 changed files with 5 additions and 5 deletions

View File

@ -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() +

View File

@ -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.");

View File

@ -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() +

View File

@ -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() +

View File

@ -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.");