geforkt von Mirrors/Paper
2873869bb1
Signs no longer have a specific isEdiable state, the entire API in this regard needs updating/deprecation. The boolean field is completely gone, replaced by a uuid (which will need a new setEditingPlayer(UUID) method on the Sign interface), and the current upstream implementation of setEdiable simply flips the is_waxed state. This patch is hence not needed as it neither allows editing (which will be redone in a later patch) nor is required to copy the is_waxed boolean flag as it lives in the signs compound tag and is covered by applyTo.
20 Zeilen
927 B
Diff
20 Zeilen
927 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Wed, 22 Mar 2023 13:12:01 -0700
|
|
Subject: [PATCH] Fix api checking banned ips
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftIpBanList.java b/src/main/java/org/bukkit/craftbukkit/CraftIpBanList.java
|
|
index 61cb647b2aa590303402e6652bd37b5bca0e0b1d..30f2ddff4108e92eaac50317bdd9ef4eb25ec085 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftIpBanList.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftIpBanList.java
|
|
@@ -64,7 +64,7 @@ public class CraftIpBanList implements org.bukkit.BanList {
|
|
public boolean isBanned(String target) {
|
|
Validate.notNull(target, "Target cannot be null");
|
|
|
|
- return this.list.isBanned(InetSocketAddress.createUnresolved(target, 0));
|
|
+ return this.list.isBanned(target); // Paper - fix checking banned ips
|
|
}
|
|
|
|
@Override
|