Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,086 changes: 440 additions & 646 deletions worlds/minecraft/Rules.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions worlds/minecraft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .Options import MinecraftOptions
from .Structures import shuffle_structures
from .ItemPool import build_item_pool, get_junk_item_names
from .Rules import set_rules
from .Rules import set_all_rules
from ..LauncherComponents import icon_paths

client_version = 9
Expand Down Expand Up @@ -237,7 +237,7 @@ def create_regions(self) -> None:
def create_items(self) -> None:
self.multiworld.itempool += build_item_pool(self)

set_rules = set_rules
set_rules = set_all_rules

def generate_output(self, output_directory: str) -> None:
data = self._get_mc_data()
Expand Down
2 changes: 1 addition & 1 deletion worlds/minecraft/archipelago.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"Seafo",
"cjmang"
],
"minimum_ap_version": "0.6.3",
"minimum_ap_version": "0.6.7",
"world_version": "2.0.0"
}
20 changes: 10 additions & 10 deletions worlds/stardew_valley/data/bundles_data/bundle_data.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from .remixed_bundles import *
all_bundle_items_except_money = []
all_remixed_bundles = [*crafts_room_bundles_remixed, *pantry_bundles_remixed, *fish_tank_bundles_remixed,
*boiler_room_bundles_remixed, *bulletin_board_bundles_remixed, missing_bundle_thematic,
*giant_stump_bundles_remixed]
for bundle in all_remixed_bundles:
all_bundle_items_except_money.extend(bundle.items)
all_bundle_items_by_name = {item.item_name: item for item in all_bundle_items_except_money}
from .remixed_bundles import *

all_bundle_items_except_money = []
all_remixed_bundles = [*crafts_room_bundles_remixed, *pantry_bundles_remixed, *fish_tank_bundles_remixed,
*boiler_room_bundles_remixed, *bulletin_board_bundles_remixed, missing_bundle_thematic,
*giant_stump_bundles_remixed]
for bundle in all_remixed_bundles:
all_bundle_items_except_money.extend(bundle.items)

all_bundle_items_by_name = {item.item_name: item for item in all_bundle_items_except_money}
Loading
Loading