mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 17:29:56 +01:00
74f507f4e3
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: e461dcfe #555: Item - add getters/setters for owner/thrower CraftBukkit Changes: 055870c4 #758: Item - add getters/setters for owner/thrower
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: zbk <zbk@projectsolaris.net>
|
|
Date: Sun, 26 Apr 2020 23:49:03 -0400
|
|
Subject: [PATCH] Villager Restocks API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Villager.java b/src/main/java/org/bukkit/entity/Villager.java
|
|
index ef48ad9b28750ab7b33071f6b8e354e922731909..d1579153092c1b80350155110f1b9926b1a1ef57 100644
|
|
--- a/src/main/java/org/bukkit/entity/Villager.java
|
|
+++ b/src/main/java/org/bukkit/entity/Villager.java
|
|
@@ -77,6 +77,20 @@ public interface Villager extends AbstractVillager {
|
|
*/
|
|
public void setVillagerExperience(int experience);
|
|
|
|
+ // Paper start
|
|
+ /**
|
|
+ * Gets the amount of times a villager has restocked their trades today
|
|
+ * @return The amount of trade restocks.
|
|
+ */
|
|
+ public int getRestocksToday();
|
|
+
|
|
+ /**
|
|
+ * Sets the amount of times a villager has restocked their trades today
|
|
+ * @param restocksToday new restock count
|
|
+ */
|
|
+ public void setRestocksToday(int restocksToday);
|
|
+ // Paper end
|
|
+
|
|
/**
|
|
* Attempts to make this villager sleep at the given location.
|
|
* <br>
|