Skip to content

Commit

Permalink
ok one of them was
Browse files Browse the repository at this point in the history
  • Loading branch information
alwaysintreble committed Nov 19, 2024
1 parent 6b66e90 commit e4e9cd9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/general/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
from argparse import Namespace
from typing import List, Optional, Tuple, Type, Union

from tornado.gen import multi

from BaseClasses import CollectionState, Item, ItemClassification, Location, MultiWorld, Region
from worlds import network_data_package
from worlds.AutoWorld import World, call_all
Expand Down Expand Up @@ -75,7 +73,7 @@ def generate_test_multiworld(players: int = 1) -> MultiWorld:
:return: The generated test multiworld
"""
multiworld = setup_multiworld([TestWorld] * players, seed=0)
multiworld.regions += [Region("Menu", player_id, multiworld) for player_id in multiworld.player_ids]
multiworld.regions += [Region("Menu", player_id + 1, multiworld) for player_id in range(players)]

return multiworld

Expand Down

0 comments on commit e4e9cd9

Please sign in to comment.