diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 049774d..f4cdfcd 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -8,11 +8,7 @@ #define mine_character '@' int checkAge(int age) { - int result = 0; - for (int i = 0; i < 10000; i++) { - result += i; - } - return age >= 12 ? 1 : 0; + return age >= MIN_AGE ? 1 : 0; } // Funktion zur Initialisierung des Zufallsgenerators