mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-18 21:38:13 -07:00
Compare commits
4 Commits
NewSoupVi-
...
0.5.1.Hotf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ea5ff5f2bc | ||
|
|
4938b5f54f | ||
|
|
7d84a79e4a | ||
|
|
70e629b9b3 |
@@ -53,7 +53,7 @@
|
|||||||
<table class="range-rows" data-option="{{ option_name }}">
|
<table class="range-rows" data-option="{{ option_name }}">
|
||||||
<tbody>
|
<tbody>
|
||||||
{{ RangeRow(option_name, option, option.range_start, option.range_start, True) }}
|
{{ RangeRow(option_name, option, option.range_start, option.range_start, True) }}
|
||||||
{% if option.range_start < option.default < option.range_end %}
|
{% if option.default is number and option.range_start < option.default < option.range_end %}
|
||||||
{{ RangeRow(option_name, option, option.default, option.default, True) }}
|
{{ RangeRow(option_name, option, option.default, option.default, True) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ RangeRow(option_name, option, option.range_end, option.range_end, True) }}
|
{{ RangeRow(option_name, option, option.range_end, option.range_end, True) }}
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ def _install_apworld(apworld_src: str = "") -> Optional[Tuple[pathlib.Path, path
|
|||||||
try:
|
try:
|
||||||
import zipfile
|
import zipfile
|
||||||
zip = zipfile.ZipFile(apworld_path)
|
zip = zipfile.ZipFile(apworld_path)
|
||||||
directories = [f.filename.strip('/') for f in zip.filelist if f.CRC == 0 and f.file_size == 0 and f.filename.count('/') == 1]
|
directories = [f.name for f in zipfile.Path(zip).iterdir() if f.is_dir()]
|
||||||
if len(directories) == 1 and directories[0] in apworld_path.stem:
|
if len(directories) == 1 and directories[0] in apworld_path.stem:
|
||||||
module_name = directories[0]
|
module_name = directories[0]
|
||||||
apworld_name = module_name + ".apworld"
|
apworld_name = module_name + ".apworld"
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ This means that, for these specific mods, if you decide to include them in your
|
|||||||
with the assumption that you will install and play with these mods. The multiworld will contain related items and locations
|
with the assumption that you will install and play with these mods. The multiworld will contain related items and locations
|
||||||
for these mods, the specifics will vary from mod to mod
|
for these mods, the specifics will vary from mod to mod
|
||||||
|
|
||||||
[Supported Mods Documentation](https://github.com/agilbert1412/StardewArchipelago/blob/5.x.x/Documentation/Supported%20Mods.md)
|
[Supported Mods Documentation](https://github.com/agilbert1412/StardewArchipelago/blob/6.x.x/Documentation/Supported%20Mods.md)
|
||||||
|
|
||||||
List of supported mods:
|
List of supported mods:
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
- Archipelago from the [Archipelago Releases Page](https://github.com/ArchipelagoMW/Archipelago/releases)
|
- Archipelago from the [Archipelago Releases Page](https://github.com/ArchipelagoMW/Archipelago/releases)
|
||||||
* (Only for the TextClient)
|
* (Only for the TextClient)
|
||||||
- Other Stardew Valley Mods [Nexus Mods](https://www.nexusmods.com/stardewvalley)
|
- Other Stardew Valley Mods [Nexus Mods](https://www.nexusmods.com/stardewvalley)
|
||||||
* There are [supported mods](https://github.com/agilbert1412/StardewArchipelago/blob/5.x.x/Documentation/Supported%20Mods.md)
|
* There are [supported mods](https://github.com/agilbert1412/StardewArchipelago/blob/6.x.x/Documentation/Supported%20Mods.md)
|
||||||
that you can add to your yaml to include them with the Archipelago randomization
|
that you can add to your yaml to include them with the Archipelago randomization
|
||||||
|
|
||||||
* It is **not** recommended to further mod Stardew Valley with unsupported mods, although it is possible to do so.
|
* It is **not** recommended to further mod Stardew Valley with unsupported mods, although it is possible to do so.
|
||||||
|
|||||||
@@ -406,6 +406,7 @@ class PuzzleRandomizationSeed(Range):
|
|||||||
Sigma Rando, which is the basis for all puzzle randomization in this randomizer, uses a seed from 1 to 9999999 for the puzzle randomization.
|
Sigma Rando, which is the basis for all puzzle randomization in this randomizer, uses a seed from 1 to 9999999 for the puzzle randomization.
|
||||||
This option lets you set this seed yourself.
|
This option lets you set this seed yourself.
|
||||||
"""
|
"""
|
||||||
|
display_name = "Puzzle Randomization Seed"
|
||||||
range_start = 1
|
range_start = 1
|
||||||
range_end = 9999999
|
range_end = 9999999
|
||||||
default = "random"
|
default = "random"
|
||||||
|
|||||||
Reference in New Issue
Block a user