Skip to content

Commit

Permalink
Fixed Anuken#5847
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Aug 23, 2021
1 parent 80ef3ce commit 044a124
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/mindustry/editor/WaveInfoDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
import mindustry.ui.*;
import mindustry.ui.dialogs.*;

import java.util.*;

import static mindustry.Vars.*;
import static mindustry.game.SpawnGroup.*;

Expand Down Expand Up @@ -167,7 +165,7 @@ void buildGroups(){
table.margin(10f);

if(groups != null){
groups.sort(Comparator.comparing(g -> g.begin));
groups.sort(g -> g.begin);

for(SpawnGroup group : groups){
table.table(Tex.button, t -> {
Expand Down

0 comments on commit 044a124

Please sign in to comment.