Core: make early_items internal only (#1177)

Co-authored-by: beauxq <beauxq@yahoo.com>
This commit is contained in:
espeon65536
2022-11-16 10:32:33 -06:00
committed by GitHub
parent 4d79920fa6
commit edd1fff4b7
10 changed files with 61 additions and 76 deletions

View File

@@ -628,9 +628,9 @@ class TestDistributeItemsRestrictive(unittest.TestCase):
mw = generate_multi_world(2)
player1 = generate_player_data(mw, 1, location_count=5, basic_item_count=5)
player2 = generate_player_data(mw, 2, location_count=5, basic_item_count=5)
mw.early_items[1].value[player1.basic_items[0].name] = 1
mw.early_items[2].value[player2.basic_items[2].name] = 1
mw.early_items[2].value[player2.basic_items[3].name] = 1
mw.early_items[1][player1.basic_items[0].name] = 1
mw.early_items[2][player2.basic_items[2].name] = 1
mw.early_items[2][player2.basic_items[3].name] = 1
early_items = [
player1.basic_items[0],