mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-18 12:48:53 +01:00
da9d110d5b
This patch does not appear to be doing anything useful, and may hide errors. Currently, the save logic does not run through this path either so it did not do anything. Additionally, properly implement support for handling RegionFileSizeException in Moonrise.
34 lines
1.6 KiB
Diff
34 lines
1.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: SageSphinx63920 <sage@sagesphinx63920.dev>
|
|
Date: Sun, 14 May 2023 12:57:15 +0200
|
|
Subject: [PATCH] Add whitelist events
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/UserWhiteList.java b/src/main/java/net/minecraft/server/players/UserWhiteList.java
|
|
index 3226a3b69453fb5e13003e941ccbc2d941e047b0..aaa3d5769e0e184e19d01109a76a65be634f830d 100644
|
|
--- a/src/main/java/net/minecraft/server/players/UserWhiteList.java
|
|
+++ b/src/main/java/net/minecraft/server/players/UserWhiteList.java
|
|
@@ -28,4 +28,23 @@ public class UserWhiteList extends StoredUserList<GameProfile, UserWhiteListEntr
|
|
protected String getKeyForUser(GameProfile gameProfile) {
|
|
return gameProfile.getId().toString();
|
|
}
|
|
+ // Paper start - Add whitelist events
|
|
+ @Override
|
|
+ public void add(UserWhiteListEntry entry) {
|
|
+ if (!new io.papermc.paper.event.server.WhitelistStateUpdateEvent(com.destroystokyo.paper.profile.CraftPlayerProfile.asBukkitCopy(entry.getUser()), io.papermc.paper.event.server.WhitelistStateUpdateEvent.WhitelistStatus.ADDED).callEvent()) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ super.add(entry);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void remove(GameProfile profile) {
|
|
+ if (!new io.papermc.paper.event.server.WhitelistStateUpdateEvent(com.destroystokyo.paper.profile.CraftPlayerProfile.asBukkitCopy(profile), io.papermc.paper.event.server.WhitelistStateUpdateEvent.WhitelistStatus.REMOVED).callEvent()) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ super.remove(profile);
|
|
+ }
|
|
+ // Paper end - Add whitelist events
|
|
}
|