mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 19:07:40 +01:00
Fix stats event call
This commit is contained in:
parent
972266605e
commit
c55ad7092c
@ -1,15 +1,15 @@
|
||||
--- a/net/minecraft/stats/StatsCounter.java
|
||||
+++ b/net/minecraft/stats/StatsCounter.java
|
||||
@@ -18,6 +_,12 @@
|
||||
}
|
||||
@@ -14,6 +_,12 @@
|
||||
|
||||
public void setValue(Player player, Stat<?> stat, int value) {
|
||||
public void increment(Player player, Stat<?> stat, int amount) {
|
||||
int i = (int)Math.min((long)this.getValue(stat) + amount, 2147483647L);
|
||||
+ // CraftBukkit start - fire Statistic events
|
||||
+ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(player, stat, this.getValue(stat), value);
|
||||
+ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(player, stat, this.getValue(stat), i);
|
||||
+ if (cancellable != null && cancellable.isCancelled()) {
|
||||
+ return;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
this.stats.put(stat, value);
|
||||
this.setValue(player, stat, i);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user