mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
89d51d5f29
Because this exploit has been widely known for years and has not been fixed by Mojang, we decided that it was worth allowing people to toggle it on/off due to how easy it is to make it configurable. It should be noted that this decision does not promise all future exploits will be configurable.
25 lines
1.1 KiB
Diff
25 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: booky10 <boooky10@gmail.com>
|
|
Date: Fri, 5 Nov 2021 21:01:36 +0100
|
|
Subject: [PATCH] Add API for resetting a single score
|
|
|
|
It was only possible to reset all scores for a specific entry, instead of resetting only specific scores.
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftScore.java b/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftScore.java
|
|
index 29e24461e29e4cf3d31497198debcde18761ad73..ceb1a39c02c3cfa7632a0fdca414c7046888fcb1 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftScore.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/scoreboard/CraftScore.java
|
|
@@ -66,4 +66,12 @@ final class CraftScore implements Score {
|
|
public CraftScoreboard getScoreboard() {
|
|
return this.objective.getScoreboard();
|
|
}
|
|
+
|
|
+ // Paper start
|
|
+ @Override
|
|
+ public void resetScore() {
|
|
+ Scoreboard board = this.objective.checkState().board;
|
|
+ board.resetSinglePlayerScore(entry, this.objective.getHandle());
|
|
+ }
|
|
+ // Paper end
|
|
}
|