From 97639fca47c1fd56809bdb7501cf8c44cf638f49 Mon Sep 17 00:00:00 2001 From: James <150948866+jameslaight@users.noreply.github.com> Date: Sun, 21 Apr 2024 15:15:49 +0100 Subject: [PATCH] remove printing --- core/src/com/monjaro/gamejam/main/Game.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/src/com/monjaro/gamejam/main/Game.java b/core/src/com/monjaro/gamejam/main/Game.java index 250af94..ea18d56 100644 --- a/core/src/com/monjaro/gamejam/main/Game.java +++ b/core/src/com/monjaro/gamejam/main/Game.java @@ -188,10 +188,6 @@ public class Game extends ApplicationAdapter { default -> new TallDecay(); }); - for (Segment segment : segments) { - System.out.println(segment.getName()); - } - return new Round(segments, decays, 5); }