aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java')
-rw-r--r--src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java b/src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java
index b020e12c3..92ed25ed6 100644
--- a/src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java
+++ b/src/main/java/com/thatgravyboat/skyblockhud/api/events/SidebarPostEvent.java
@@ -7,19 +7,19 @@ import net.minecraftforge.fml.common.eventhandler.Event;
public class SidebarPostEvent extends Event {
- public Scoreboard scoreboard;
- public ScoreObjective objective;
- public List<String> scores;
- public String[] arrayScores;
+ public Scoreboard scoreboard;
+ public ScoreObjective objective;
+ public List<String> scores;
+ public String[] arrayScores;
- public SidebarPostEvent(
- Scoreboard scoreboard,
- ScoreObjective objective,
- List<String> scores
- ) {
- this.scoreboard = scoreboard;
- this.objective = objective;
- this.scores = scores;
- this.arrayScores = scores.toArray(new String[] {});
- }
+ public SidebarPostEvent(
+ Scoreboard scoreboard,
+ ScoreObjective objective,
+ List<String> scores
+ ) {
+ this.scoreboard = scoreboard;
+ this.objective = objective;
+ this.scores = scores;
+ this.arrayScores = scores.toArray(new String[] {});
+ }
}