- Formatting QuestEventDuelManager.

This commit is contained in:
Agetian
2017-06-29 07:54:20 +00:00
parent d3089c2955
commit d3d2ae6313

View File

@@ -116,7 +116,6 @@ public class QuestEventDuelManager {
QuestEventDuel duel = new QuestEventDuel();
List<QuestEventDifficulty> difficultyOrder = getOrderForDifficulty(difficulty);
List<QuestEventDuel> possibleDuels = new ArrayList<>();
for (QuestEventDifficulty diff : difficultyOrder) {
possibleDuels = new ArrayList<>(sortedDuels.get(diff));
@@ -209,7 +208,8 @@ public class QuestEventDuelManager {
}
/** */
/**
* */
public void randomizeOpponents() {
final long seed = new Random().nextLong();
final Random r = new Random(seed);