mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 18:22:08 -07:00
Update to Minecraft 1.16.1
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
--- a/net/minecraft/server/StatisticManager.java
|
||||
+++ b/net/minecraft/server/StatisticManager.java
|
||||
@@ -13,6 +13,12 @@
|
||||
}
|
||||
|
||||
@@ -15,6 +15,12 @@
|
||||
public void b(EntityHuman entityhuman, Statistic<?> statistic, int i) {
|
||||
int j = (int) Math.min((long) this.getStatisticValue(statistic) + (long) i, 2147483647L);
|
||||
|
||||
+ // CraftBukkit start - fire Statistic events
|
||||
+ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(entityhuman, statistic, this.getStatisticValue(statistic), i);
|
||||
+ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(entityhuman, statistic, this.getStatisticValue(statistic), j);
|
||||
+ if (cancellable != null && cancellable.isCancelled()) {
|
||||
+ return;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
this.setStatistic(entityhuman, statistic, this.getStatisticValue(statistic) + i);
|
||||
this.setStatistic(entityhuman, statistic, j);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user