Skip to content

Commit

Permalink
Update to 1.130
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablete1234 committed Mar 19, 2024
1 parent 3237543 commit 09bd579
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/github/manolo8/darkbot/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class Main extends Thread implements PluginListener, BotAPI {
/** Do not use in plugins! Only for bot internal usage */
@ApiStatus.Internal public static Main INSTANCE;

public static final Version VERSION = new Version("1.130 beta 1");
public static final Version VERSION = new Version("1.130");
public static final Object UPDATE_LOCKER = new Object();
public static final Gson GSON = new GsonBuilder()
.setPrettyPrinting()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public class EternalBlacklightProxy extends Updatable implements EternalBlacklig

private final Main main;

public FlashList<EternalBlacklightProxy.Booster> activeBoostersArr = FlashList.ofVector(Booster::new);
public FlashList<EternalBlacklightProxy.Booster> boostersOptionsArr = FlashList.ofVector(Booster::new);
public FlashList<EternalBlacklightProxy.Leaderboard> topRankersArr = FlashList.ofVector(Leaderboard::new);
private final FlashList<EternalBlacklightProxy.Booster> activeBoostersArr = FlashList.ofVector(Booster::new);
private final FlashList<EternalBlacklightProxy.Booster> boostersOptionsArr = FlashList.ofVector(Booster::new);
private final FlashList<EternalBlacklightProxy.Leaderboard> topRankersArr = FlashList.ofVector(Leaderboard::new);

@Deprecated(forRemoval = true)
public List<EternalBlacklightProxy.Booster> activeBoosters = activeBoostersArr;
Expand All @@ -32,7 +32,7 @@ public class EternalBlacklightProxy extends Updatable implements EternalBlacklig
@Deprecated(forRemoval = true)
public List<EternalBlacklightProxy.Leaderboard> topRankers = topRankersArr;

public Leaderboard myRank = new Leaderboard();
public final Leaderboard myRank = new Leaderboard();

@Getter
public int cpuCount, currentWave, furthestWave, boosterPoints;
Expand Down

0 comments on commit 09bd579

Please sign in to comment.