diff options
author | MiniDigger | Martin <[email protected]> | 2024-01-14 11:04:49 +0100 |
---|---|---|
committer | MiniDigger | Martin <[email protected]> | 2024-01-14 11:04:49 +0100 |
commit | bee74680e607c2e29b038329f62181238911cd83 (patch) | |
tree | 708fd1a4a0227d9071243adf2a42d5e9e96cde4a /patch-remap/mache-spigotflower/net/minecraft/stats/StatsCounter.java.patch | |
parent | 0a44692ef6ff6e255d48eb3ba1bb114166eafda9 (diff) | |
download | Paper-softspoon.tar.gz Paper-softspoon.zip |
add remapped patches as a testsoftspoon
Diffstat (limited to 'patch-remap/mache-spigotflower/net/minecraft/stats/StatsCounter.java.patch')
-rw-r--r-- | patch-remap/mache-spigotflower/net/minecraft/stats/StatsCounter.java.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/patch-remap/mache-spigotflower/net/minecraft/stats/StatsCounter.java.patch b/patch-remap/mache-spigotflower/net/minecraft/stats/StatsCounter.java.patch new file mode 100644 index 0000000000..66ccf90461 --- /dev/null +++ b/patch-remap/mache-spigotflower/net/minecraft/stats/StatsCounter.java.patch @@ -0,0 +1,33 @@ +--- a/net/minecraft/stats/StatsCounter.java ++++ b/net/minecraft/stats/StatsCounter.java +@@ -13,18 +13,24 @@ + this.stats.defaultReturnValue(0); + } + +- public void increment(Player player, Stat<?> stat, int i) { +- int j = (int) Math.min((long) this.getValue(stat) + (long) i, 2147483647L); ++ public void increment(Player player, Stat<?> stat, int amount) { ++ int j = (int) Math.min((long) this.getValue(stat) + (long) amount, 2147483647L); + ++ // CraftBukkit start - fire Statistic events ++ org.bukkit.event.Cancellable cancellable = org.bukkit.craftbukkit.event.CraftEventFactory.handleStatisticsIncrease(player, stat, this.getValue(stat), j); ++ if (cancellable != null && cancellable.isCancelled()) { ++ return; ++ } ++ // CraftBukkit end + this.setValue(player, stat, j); + } + +- public void setValue(Player player, Stat<?> stat, int i) { +- this.stats.put(stat, i); ++ public void setValue(Player player, Stat<?> stat, int value) { ++ this.stats.put(stat, value); + } + +- public <T> int getValue(StatType<T> stattype, T t0) { +- return stattype.contains(t0) ? this.getValue(stattype.get(t0)) : 0; ++ public <T> int getValue(StatType<T> type, T value) { ++ return type.contains(value) ? this.getValue(type.get(value)) : 0; + } + + public int getValue(Stat<?> stat) { |