geforkt von Mirrors/Paper
70ce6ce831
This makes it easier for downstream projects (forks) to replace the version fetching system with their own. It is as simple as implementing an interface and overriding the default implementation of org.bukkit.UnsafeValues#getVersionFetcher() It also makes it easier for us to organize things like the version history feature. Lastly I have updated the paper implementation to check against the site API rather than against jenkins.
22 Zeilen
769 B
Diff
22 Zeilen
769 B
Diff
From f49d4f07fe1c441001d5116594585e3bad5eb04f Mon Sep 17 00:00:00 2001
|
|
From: Mark Vainomaa <mikroskeem@mikroskeem.eu>
|
|
Date: Wed, 13 Mar 2019 20:08:09 +0200
|
|
Subject: [PATCH] Call WhitelistToggleEvent when whitelist is toggled
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java
|
|
index e6c894463..ce66596c6 100644
|
|
--- a/src/main/java/net/minecraft/server/PlayerList.java
|
|
+++ b/src/main/java/net/minecraft/server/PlayerList.java
|
|
@@ -1034,6 +1034,7 @@ public abstract class PlayerList {
|
|
}
|
|
|
|
public void setHasWhitelist(boolean flag) {
|
|
+ new com.destroystokyo.paper.event.server.WhitelistToggleEvent(flag).callEvent();
|
|
this.whitelist.setEnabled(flag); // Paper
|
|
}
|
|
|
|
--
|
|
2.21.0
|
|
|