File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ def print_status(save_data):
5050 break
5151
5252 life_death_symbol = "LIFE" if not save_data .get ("death" ) else "DEATH"
53+ symbol_color = Fore .GREEN if life_death_symbol == "LIFE" else Fore .RED
5354
5455 print ("Cruelty Squad Save Editor" )
5556 print ("Current Levels Unlocked:" , Fore .RED + str (levels_unlocked ) + Style .RESET_ALL )
5657 print ("Number of Weapons Unlocked:" , Fore .RED + str (weapons_unlocked ) + Style .RESET_ALL )
5758 print ("Current Money:" , Fore .GREEN + str (money ) + Style .RESET_ALL )
5859 print ("Current Difficulty:" , Fore .RED + str (current_difficulty ) + Style .RESET_ALL )
59- symbol_color = Fore .GREEN if life_death_symbol == "LIFE" else Fore .RED
6060 print ("Current Life/Death Symbol:" , symbol_color + str (life_death_symbol ) + Style .RESET_ALL )
6161
6262def clear_console ():
You can’t perform that action at this time.
0 commit comments