From b4245649854a9d67fc20e6f43b47ad117bca79c2 Mon Sep 17 00:00:00 2001 From: danai Date: Tue, 7 May 2024 15:01:56 +0200 Subject: [PATCH] =?UTF-8?q?Klasse=20W=C3=BCrfel=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- KniffelSpiel/src/domain/Würfel.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/KniffelSpiel/src/domain/Würfel.java b/KniffelSpiel/src/domain/Würfel.java index bd29d1e..1731130 100644 --- a/KniffelSpiel/src/domain/Würfel.java +++ b/KniffelSpiel/src/domain/Würfel.java @@ -82,7 +82,7 @@ public class Würfel { keptDice.add((int) (Math.random() * numSides) + 1); } - // Конвертируем List обратно в int[] + // Konvertieren List zurück in int[] for (int i = 0; i < keptDice.size(); i++) { values[i] = keptDice.get(i); } @@ -91,11 +91,6 @@ public class Würfel { - - - - - private void updateValues() { for (int i = 0; i < DEFAULT_NUM_WÜRFEL; i++) { System.out.println("Wurf " + (i + 1) + ": " + values[i]);