Paper/Spigot-API-Patches/0200-Villager-Restocks-API.patch
Aikar 57dd397155
Updated Upstream (Bukkit/CraftBukkit)
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:
b999860d SPIGOT-2304: Add LootGenerateEvent

CraftBukkit Changes:
77fd87e4 SPIGOT-2304: Implement LootGenerateEvent
a1a705ee SPIGOT-5566: Doused campfires & fires should call EntityChangeBlockEvent
41712edd SPIGOT-5707: PersistentDataHolder not Persistent on API dropped Item
2020-05-01 18:03:57 -04:00

35 lines
1.1 KiB
Diff

From 06142d327789e096f5fabec10ddf2667a892c094 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 ef48ad9b2..d15791530 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>
--
2.26.2