mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-25 16:22:11 +01:00
Uses the new ANSIComponentSerializer introduced in Adventure 4.14.0 to serialize components when logging them via the ComponentLogger, or when sending messages to the console. This replaces the old solution which uses legacy jank and custom color conversions, with a new library that handles the conversion and config
45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
Date: Tue, 7 Dec 2021 19:34:23 -0500
|
|
Subject: [PATCH] Dolphin API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftDolphin.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftDolphin.java
|
|
index 938e141f161acf5de5d3361382b514caea02c6fb..18623159932df2dd5e43133b4396b43731693780 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftDolphin.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftDolphin.java
|
|
@@ -24,4 +24,34 @@ public class CraftDolphin extends CraftWaterMob implements Dolphin {
|
|
public EntityType getType() {
|
|
return EntityType.DOLPHIN;
|
|
}
|
|
+
|
|
+ @Override
|
|
+ public int getMoistness() {
|
|
+ return this.getHandle().getMoistnessLevel();
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setMoistness(int moistness) {
|
|
+ this.getHandle().setMoisntessLevel(moistness);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setHasFish(boolean hasFish) {
|
|
+ this.getHandle().setGotFish(hasFish);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public boolean hasFish() {
|
|
+ return this.getHandle().gotFish();
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public org.bukkit.Location getTreasureLocation() {
|
|
+ return io.papermc.paper.util.MCUtil.toLocation(this.getHandle().level(), this.getHandle().getTreasurePos());
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public void setTreasureLocation(org.bukkit.Location location) {
|
|
+ this.getHandle().setTreasurePos(io.papermc.paper.util.MCUtil.toBlockPosition(location));
|
|
+ }
|
|
}
|