geforkt von Mirrors/Paper
patch
Dieser Commit ist enthalten in:
Ursprung
4ec60d8958
Commit
21e2a4d210
@ -10,20 +10,18 @@ diff --git a/src/main/java/net/minecraft/world/level/block/entity/SignBlockEntit
|
|||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/net/minecraft/world/level/block/entity/SignBlockEntity.java
|
--- a/src/main/java/net/minecraft/world/level/block/entity/SignBlockEntity.java
|
||||||
+++ b/src/main/java/net/minecraft/world/level/block/entity/SignBlockEntity.java
|
+++ b/src/main/java/net/minecraft/world/level/block/entity/SignBlockEntity.java
|
||||||
@@ -0,0 +0,0 @@ public class SignBlockEntity extends BlockEntity implements CommandSource { // C
|
@@ -0,0 +0,0 @@
|
||||||
private final FormattedCharSequence[] renderMessages;
|
package net.minecraft.world.level.block.entity;
|
||||||
private DyeColor color;
|
|
||||||
public java.util.UUID signEditor; // Paper
|
|
||||||
+ private static final boolean CONVERT_LEGACY_SIGNS = Boolean.getBoolean("convertLegacySigns"); // Paper
|
+ private static final boolean CONVERT_LEGACY_SIGNS = Boolean.getBoolean("convertLegacySigns"); // Paper
|
||||||
|
|
||||||
public SignBlockEntity() {
|
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
||||||
super(BlockEntityType.SIGN);
|
import java.util.UUID;
|
||||||
@@ -0,0 +0,0 @@ public class SignBlockEntity extends BlockEntity implements CommandSource { // C
|
@@ -0,0 +0,0 @@ public class SignBlockEntity extends BlockEntity implements CommandSource { // C
|
||||||
}
|
}
|
||||||
|
|
||||||
// CraftBukkit start
|
// CraftBukkit start
|
||||||
- if (Boolean.getBoolean("convertLegacySigns")) {
|
- if (Boolean.getBoolean("convertLegacySigns")) {
|
||||||
+ if (CONVERT_LEGACY_SIGNS) { // Paper
|
+ if (CONVERT_LEGACY_SIGNS) { // Paper
|
||||||
tag.putBoolean("Bukkit.isConverted", true);
|
nbt.putBoolean("Bukkit.isConverted", true);
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren