mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 03:22:19 +01:00
43702a9e10
By: md_5 <git@md-5.net>
15 lines
709 B
Diff
15 lines
709 B
Diff
--- a/net/minecraft/stats/StatisticManager.java
|
|
+++ b/net/minecraft/stats/StatisticManager.java
|
|
@@ -16,6 +16,12 @@
|
|
public void increment(EntityHuman entityhuman, Statistic<?> statistic, int i) {
|
|
int j = (int) Math.min((long) this.getValue(statistic) + (long) i, 2147483647L);
|
|
|
|
+ // CraftBukkit start - fire Statistic events
|
|
+ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(entityhuman, statistic, this.getValue(statistic), j);
|
|
+ if (cancellable != null && cancellable.isCancelled()) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
this.setValue(entityhuman, statistic, j);
|
|
}
|
|
|