diff options
Diffstat (limited to 'patch-remap/og/net/minecraft/stats/StatisticManager.patch')
-rw-r--r-- | patch-remap/og/net/minecraft/stats/StatisticManager.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/patch-remap/og/net/minecraft/stats/StatisticManager.patch b/patch-remap/og/net/minecraft/stats/StatisticManager.patch new file mode 100644 index 0000000000..118075d566 --- /dev/null +++ b/patch-remap/og/net/minecraft/stats/StatisticManager.patch @@ -0,0 +1,15 @@ +--- 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); + } + |