Fix SquareTerrainGenerator not being square

This commit is contained in:
2023-05-21 00:19:50 +02:00
parent 671857b9e4
commit 4fc8503d63
12 changed files with 9 additions and 6 deletions

View File

@@ -73,7 +73,6 @@ public class Score {
public List<String> getMapFormatted() {
List<String> out = new ArrayList<>();
int counter = 0;
for (Map.Entry<Player, Integer> entry : getMap().entrySet()) {
out.add(entry.getValue() + ": " + entry.getKey().getUsername());
}