Set triforce pieces available to max of available and required.

This commit is contained in:
caitsith2
2020-06-17 01:33:34 -07:00
parent 617312fd4b
commit d8bc5ca2a8
3 changed files with 3 additions and 3 deletions

View File

@@ -302,7 +302,7 @@ def roll_settings(weights):
ret.triforce_pieces_required = get_choice('triforce_pieces_required',
weights) if "triforce_pieces_required" in weights else 20
ret.triforce_pieces_required = min(max(1, int(ret.triforce_pieces_required)), ret.triforce_pieces_available)
ret.triforce_pieces_required = min(max(1, int(ret.triforce_pieces_required)), 112)
ret.mode = get_choice('world_state', weights)
if ret.mode == 'retro':