removed custom voices for now

This commit is contained in:
Sakimori 2022-09-18 11:14:20 -04:00
parent 74aef9d163
commit dcbc934f86

View file

@ -390,13 +390,10 @@ class TrespassOracle(game_strings_base):
def all_voices(): def all_voices():
return {"default": game_strings_base, return {"default": game_strings_base}
"The Goddesses": TheGoddesses,
"The New Guy": TheNewGuy,
"Trespass Oracle": TrespassOracle}
def weighted_voices(): #these are the ones accessible to random games def weighted_voices(): #these are the ones accessible to random games
return [game_strings_base, TheGoddesses, TheNewGuy], [6, 2, 2] return [game_strings_base], [6]
def base_string(base): def base_string(base):