diff --git a/game.py b/game.py index 532f100..7cd4ab1 100644 --- a/game.py +++ b/game.py @@ -93,7 +93,7 @@ def choose_loser(all_results): " für eine neue Runde oder 'q' zum Beenden. ", []) -def roll_dice(number=1, faces=6, seed=3.8): +def roll_dice(number=1, faces=6, seed=None): """ Throws a certain number of dice with a certain number of faces. diff --git a/user_interface.py b/user_interface.py index 0a04e7d..87fe8d1 100644 --- a/user_interface.py +++ b/user_interface.py @@ -78,5 +78,5 @@ def the_end(): This functions prints the end screen. return: None ''' - print("--------------------------\n\/\/\/\ SPIEL ENDE /\/\/\/\n--------------------------") + print("--------------------------\n\/\/\/\ SPIELENDE /\/\/\/\n--------------------------")