Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
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.
25 Zeilen
1.1 KiB
Diff
25 Zeilen
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Mariell Hoversholm <proximyst@proximyst.com>
|
|
Date: Mon, 2 Aug 2021 08:52:21 +0200
|
|
Subject: [PATCH] Fix test not bootstrapping
|
|
|
|
Signed-off-by: Mariell Hoversholm <proximyst@proximyst.com>
|
|
|
|
diff --git a/src/test/java/org/bukkit/enchantments/EnchantmentTargetTest.java b/src/test/java/org/bukkit/enchantments/EnchantmentTargetTest.java
|
|
index 439bf35c251ab5dc0d27923e62789a496618de82..5d3b8ba99d0fe966b7329540d61825aa266c7e64 100644
|
|
--- a/src/test/java/org/bukkit/enchantments/EnchantmentTargetTest.java
|
|
+++ b/src/test/java/org/bukkit/enchantments/EnchantmentTargetTest.java
|
|
@@ -5,10 +5,11 @@ import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.item.enchantment.EnchantmentCategory;
|
|
import org.bukkit.Material;
|
|
import org.bukkit.craftbukkit.util.CraftMagicNumbers;
|
|
+import org.bukkit.support.AbstractTestingBase;
|
|
import org.junit.Assert;
|
|
import org.junit.Test;
|
|
|
|
-public class EnchantmentTargetTest {
|
|
+public class EnchantmentTargetTest extends AbstractTestingBase { // Paper
|
|
|
|
@Test
|
|
public void test() {
|