Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
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.
56 Zeilen
1.4 KiB
Diff
56 Zeilen
1.4 KiB
Diff
From 956695150bce0d2d74ba337fd742a403e2edce7f Mon Sep 17 00:00:00 2001
|
|
From: Mark Vainomaa <mikroskeem@mikroskeem.eu>
|
|
Date: Wed, 13 Mar 2019 20:04:43 +0200
|
|
Subject: [PATCH] Add WhitelistToggleEvent
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/event/server/WhitelistToggleEvent.java b/src/main/java/com/destroystokyo/paper/event/server/WhitelistToggleEvent.java
|
|
new file mode 100644
|
|
index 00000000..fdd5eedb
|
|
--- /dev/null
|
|
+++ b/src/main/java/com/destroystokyo/paper/event/server/WhitelistToggleEvent.java
|
|
@@ -0,0 +1,40 @@
|
|
+package com.destroystokyo.paper.event.server;
|
|
+
|
|
+import org.bukkit.event.Event;
|
|
+import org.bukkit.event.HandlerList;
|
|
+import org.jetbrains.annotations.NotNull;
|
|
+
|
|
+/**
|
|
+ * This event is fired when whitelist is toggled
|
|
+ *
|
|
+ * @author Mark Vainomaa
|
|
+ */
|
|
+public class WhitelistToggleEvent extends Event {
|
|
+ private static final HandlerList handlers = new HandlerList();
|
|
+
|
|
+ private boolean enabled;
|
|
+
|
|
+ public WhitelistToggleEvent(boolean enabled) {
|
|
+ this.enabled = enabled;
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * Gets whether whitelist is going to be enabled or not
|
|
+ *
|
|
+ * @return Whether whitelist is going to be enabled or not
|
|
+ */
|
|
+ public boolean isEnabled() {
|
|
+ return enabled;
|
|
+ }
|
|
+
|
|
+ @NotNull
|
|
+ @Override
|
|
+ public HandlerList getHandlers() {
|
|
+ return handlers;
|
|
+ }
|
|
+
|
|
+ @NotNull
|
|
+ public static HandlerList getHandlerList() {
|
|
+ return handlers;
|
|
+ }
|
|
+}
|
|
--
|
|
2.21.0
|
|
|