Add getter and setter for villager's numberOfRestocksToday (#3231)

This commit is contained in:
nick 2020-04-27 02:13:41 -04:00 committed by GitHub
parent fe366fbe77
commit c03260a280
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 84 additions and 0 deletions

View file

@ -0,0 +1,34 @@
From 81d3a61bd89a1671f901041a4eb7673a28231729 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 ef48ad9b..d1579153 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.25.0.windows.1