File tree Expand file tree Collapse file tree
src/main/java/dev/manifold Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public void onInitialize() {
6363 original .getChunkSource ().getGenerator ()
6464 );
6565
66- System . out . println ("Initializing Manifold" );
66+ Manifold . LOGGER . info ("Initializing Manifold" );
6767
6868 // Recreate SimLevel using original data
6969 SimLevel simLevel = new SimLevel (
Original file line number Diff line number Diff line change @@ -127,9 +127,6 @@ public static void load(MinecraftServer server) {
127127 JsonElement val = entry .getValue ();
128128 if (val .isJsonObject ()) {
129129 JsonObject obj = val .getAsJsonObject ();
130- if (!obj .has ("mass" )) {
131- System .out .println ("test" );
132- }
133130 double mass = obj .get ("mass" ).getAsDouble ();
134131 boolean isAuto = obj .has ("auto" ) && obj .get ("auto" ).getAsBoolean ();
135132 setMass (item , mass , isAuto );
@@ -615,8 +612,6 @@ private static void recalculateBaseItems(MinecraftServer server) {
615612 .thenComparing (i -> Objects .requireNonNull (itemRegistry .getKey (i )).toString ())
616613 ).orElse (null );
617614
618- System .out .println (chosenBase );
619-
620615 if (chosenBase != null ) {
621616 baseItems .add (chosenBase );
622617 }
You can’t perform that action at this time.
0 commit comments