mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 08:56:23 +01:00
Fix MC-158900 (#2458)
The problem was we were checking isExpired() on the entry, but if it was expired at that point, then it would be null.
This commit is contained in:
parent
928abb41f8
commit
9d6680eec0
1 changed files with 28 additions and 0 deletions
28
Spigot-Server-Patches/0411-Fix-MC-158900.patch
Normal file
28
Spigot-Server-Patches/0411-Fix-MC-158900.patch
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
From 798c94094b6037e2e6b5a50d4e2488e01365da71 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
||||||
|
Date: Tue, 13 Aug 2019 06:35:17 -0700
|
||||||
|
Subject: [PATCH] Fix MC-158900
|
||||||
|
|
||||||
|
The problem was we were checking isExpired() on the entry, but if it
|
||||||
|
was expired at that point, then it would be null.
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
|
||||||
|
index a183bb450d..bf37c215c3 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/PlayerList.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/PlayerList.java
|
||||||
|
@@ -512,8 +512,10 @@ public abstract class PlayerList {
|
||||||
|
Player player = entity.getBukkitEntity();
|
||||||
|
PlayerLoginEvent event = new PlayerLoginEvent(player, hostname, ((java.net.InetSocketAddress) socketaddress).getAddress(), ((java.net.InetSocketAddress) loginlistener.networkManager.getRawAddress()).getAddress());
|
||||||
|
|
||||||
|
- if (getProfileBans().isBanned(gameprofile) && !getProfileBans().get(gameprofile).hasExpired()) {
|
||||||
|
- GameProfileBanEntry gameprofilebanentry = (GameProfileBanEntry) this.k.get(gameprofile);
|
||||||
|
+ // Paper start - Fix MC-158900
|
||||||
|
+ GameProfileBanEntry gameprofilebanentry;
|
||||||
|
+ if (getProfileBans().isBanned(gameprofile) && (gameprofilebanentry = getProfileBans().get(gameprofile)) != null) {
|
||||||
|
+ // Paper end
|
||||||
|
|
||||||
|
chatmessage = new ChatMessage("multiplayer.disconnect.banned.reason", new Object[]{gameprofilebanentry.getReason()});
|
||||||
|
if (gameprofilebanentry.getExpires() != null) {
|
||||||
|
--
|
||||||
|
2.22.0
|
||||||
|
|
Loading…
Reference in a new issue