You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
759 B
15 lines
759 B
--- ../src-base/minecraft/net/minecraft/stats/StatFileWriter.java |
|
+++ ../src-work/minecraft/net/minecraft/stats/StatFileWriter.java |
|
@@ -27,6 +27,12 @@ |
|
{ |
|
if (!p_150871_2_.isAchievement() || this.canUnlockAchievement((Achievement)p_150871_2_)) |
|
{ |
|
+ // CraftBukkit start |
|
+ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(p_150871_1_, p_150871_2_, this.writeStat(p_150871_2_), p_150871_3_); |
|
+ if (cancellable != null && cancellable.isCancelled()) { |
|
+ return; |
|
+ } |
|
+ // CraftBukkit end |
|
this.func_150873_a(p_150871_1_, p_150871_2_, this.writeStat(p_150871_2_) + p_150871_3_); |
|
} |
|
}
|
|
|