added the next tier thing on the scoreboard of the game
This commit is contained in:
@ -75,16 +75,19 @@ public class ArenaManager {
|
||||
CustomLocation locTeamBupgrades = CustomLocation.stringToLocation(teamBupgrades);
|
||||
|
||||
List<CustomLocation> teamGeneratorLocations = new ArrayList<>();
|
||||
|
||||
for (String location : teamGenerators) {
|
||||
teamGeneratorLocations.add(CustomLocation.stringToLocation(location));
|
||||
}
|
||||
|
||||
List<CustomLocation> diamondGeneratorLocations = new ArrayList<>();
|
||||
|
||||
for (String location : diamondGenerators) {
|
||||
diamondGeneratorLocations.add(CustomLocation.stringToLocation(location));
|
||||
}
|
||||
|
||||
List<CustomLocation> emeraldGeneratorLocations = new ArrayList<>();
|
||||
|
||||
for (String location : emeraldGenerators) {
|
||||
emeraldGeneratorLocations.add(CustomLocation.stringToLocation(location));
|
||||
}
|
||||
@ -126,16 +129,19 @@ public class ArenaManager {
|
||||
CustomLocation copyLocTeamBupgrades = CustomLocation.stringToLocation(copyTeamBupgrades);
|
||||
|
||||
List<CustomLocation> copyTeamGeneratorLocations = new ArrayList<>();
|
||||
|
||||
for (String location : copyTeamGenerators) {
|
||||
copyTeamGeneratorLocations.add(CustomLocation.stringToLocation(location));
|
||||
}
|
||||
|
||||
List<CustomLocation> copyDiamondGeneratorLocations = new ArrayList<>();
|
||||
|
||||
for (String location : copyDiamondGenerators) {
|
||||
copyDiamondGeneratorLocations.add(CustomLocation.stringToLocation(location));
|
||||
}
|
||||
|
||||
List<CustomLocation> copyEmeraldGeneratorLocations = new ArrayList<>();
|
||||
|
||||
for (String location : copyEmeraldGenerators) {
|
||||
copyEmeraldGeneratorLocations.add(CustomLocation.stringToLocation(location));
|
||||
}
|
||||
|
Reference in New Issue
Block a user