1
0
Fork 0

improve visuals

This commit is contained in:
Sen 2025-08-29 20:23:26 +02:00
parent 31bdece813
commit c6217bf106
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
36 changed files with 23 additions and 119 deletions

View file

@ -27,9 +27,9 @@ public class CommandEpoch extends Command {
throw new RunException("'%s' ist keine gültige Zahl", input);
}
if(num < 0)
throw new RunException("Die Zeit muss mindestens 0 betragen", num);
throw new RunException("Die Zeit muss mindestens 0 betragen");
else if(num > max)
throw new RunException("Die Zeit darf höchstens %d betragen", num, max);
throw new RunException("Die Zeit darf höchstens %d betragen", max);
return num;
}