spigot/CraftBukkit-Patches/0107-Correct-Ban-Expiration.patch

23 lines
980 B
Diff
Raw Normal View History

2014-12-21 09:01:55 +11:00
From fa2ae59bd67bec37798818fed998ce8795b99fa5 Mon Sep 17 00:00:00 2001
2014-04-16 11:14:49 +10:00
From: md_5 <git@md-5.net>
Date: Wed, 16 Apr 2014 11:14:38 +1000
Subject: [PATCH] Correct Ban Expiration
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
index fdb4b3c..7eb2077 100644
2014-04-16 11:14:49 +10:00
--- a/src/main/java/net/minecraft/server/PlayerList.java
+++ b/src/main/java/net/minecraft/server/PlayerList.java
2014-12-12 21:47:18 +00:00
@@ -376,7 +376,7 @@ public abstract class PlayerList {
2014-04-16 11:14:49 +10:00
}
// return s;
- event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s);
2014-07-09 10:23:19 +10:00
+ if (!gameprofilebanentry.hasExpired()) event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s); // Spigot
2014-04-16 11:14:49 +10:00
} else if (!this.isWhitelisted(gameprofile)) {
// return "You are not white-listed on this server!";
2014-04-17 20:47:40 +01:00
event.disallow(PlayerLoginEvent.Result.KICK_WHITELIST, org.spigotmc.SpigotConfig.whitelistMessage); // Spigot
2014-04-16 11:14:49 +10:00
--
2.1.0
2014-04-16 11:14:49 +10:00