mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-19 07:33:11 +01:00
2d09115b3a
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
22 lines
881 B
Diff
22 lines
881 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: GodOfPro <1387ilia@gmail.com>
|
|
Date: Tue, 11 Apr 2023 16:31:39 +0430
|
|
Subject: [PATCH] Add Mob Experience reward API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftMob.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftMob.java
|
|
index 620d918e302a00d5a6640648e3096988d15535a0..18b9b0dc70f6872a9d71c120bcd2edca531b0ac4 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftMob.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftMob.java
|
|
@@ -158,4 +158,11 @@ public abstract class CraftMob extends CraftLivingEntity implements Mob {
|
|
getHandle().setLeftHanded(leftHanded);
|
|
}
|
|
// Paper end
|
|
+
|
|
+ // Paper start
|
|
+ @Override
|
|
+ public int getPossibleExperienceReward() {
|
|
+ return getHandle().getExperienceReward();
|
|
+ }
|
|
+ // Paper end
|
|
}
|