mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-22 14:23:44 -07:00
initial changes
This commit is contained in:
parent
b932b8f6c9
commit
3dddc63f95
5 changed files with 8 additions and 3 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 41052efcdf8df8e67517cc93da8975fcd4e14af9
|
Subproject commit 461ab19a36cde807591543397e136cae19aa6e7c
|
2
ZAPDTR
2
ZAPDTR
|
@ -1 +1 @@
|
||||||
Subproject commit 2aeababbfb81b00d34673406453e8e8e2deaa27b
|
Subproject commit 684f21a475dcfeee89938ae1f4afc42768a3e7ef
|
|
@ -1 +1 @@
|
||||||
Subproject commit ffc062cbf44ce8dc07ac9fc0185224010bd78cc5
|
Subproject commit 6a3f6cd327b99f617b623e5b9a3afeae460aac2b
|
|
@ -648,6 +648,9 @@ void CreateStoneHints() {
|
||||||
if (ctx->GetOption(RSK_SKIP_CHILD_ZELDA)) {
|
if (ctx->GetOption(RSK_SKIP_CHILD_ZELDA)) {
|
||||||
ctx->GetItemLocation(RC_SONG_FROM_IMPA)->SetHintAccesible();
|
ctx->GetItemLocation(RC_SONG_FROM_IMPA)->SetHintAccesible();
|
||||||
}
|
}
|
||||||
|
if (ctx->GetOption(RSK_SELECTED_STARTING_AGE).Is(RO_AGE_ADULT)){
|
||||||
|
ctx->GetItemLocation(RC_TOT_MASTER_SWORD)->SetHintAccesible();
|
||||||
|
}
|
||||||
|
|
||||||
// Add 'always' location hints
|
// Add 'always' location hints
|
||||||
std::vector<RandomizerCheck> alwaysHintLocations = {};
|
std::vector<RandomizerCheck> alwaysHintLocations = {};
|
||||||
|
|
|
@ -387,6 +387,8 @@ void RegionTable_Init() {
|
||||||
LOCATION(RC_LINKS_POCKET, true),
|
LOCATION(RC_LINKS_POCKET, true),
|
||||||
LOCATION(RC_TRIFORCE_COMPLETED, logic->GetSaveContext()->ship.quest.data.randomizer.triforcePiecesCollected >= ctx->GetOption(RSK_TRIFORCE_HUNT_PIECES_REQUIRED).Get() + 1;),
|
LOCATION(RC_TRIFORCE_COMPLETED, logic->GetSaveContext()->ship.quest.data.randomizer.triforcePiecesCollected >= ctx->GetOption(RSK_TRIFORCE_HUNT_PIECES_REQUIRED).Get() + 1;),
|
||||||
LOCATION(RC_SARIA_SONG_HINT, logic->CanUse(RG_SARIAS_SONG)),
|
LOCATION(RC_SARIA_SONG_HINT, logic->CanUse(RG_SARIAS_SONG)),
|
||||||
|
LOCATION(RC_SONG_FROM_IMPA, (bool)ctx->GetOption(RSK_SKIP_CHILD_ZELDA)),
|
||||||
|
LOCATION(RC_TOT_MASTER_SWORD, (bool)ctx->GetOption(RSK_SELECTED_STARTING_AGE).Is(RO_AGE_ADULT)),
|
||||||
}, {
|
}, {
|
||||||
//Exits
|
//Exits
|
||||||
Entrance(RR_ROOT_EXITS, []{return true;}),
|
Entrance(RR_ROOT_EXITS, []{return true;}),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue