mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-16 10:02:59 -07:00
Fix seed generation issues caused by Location Table changes (#4378)
This commit is contained in:
parent
0cfd535fe6
commit
e36dcefe54
1 changed files with 2 additions and 14 deletions
|
@ -188,20 +188,8 @@ void Context::ItemReset() {
|
|||
}
|
||||
|
||||
void Context::LocationReset() {
|
||||
for (const RandomizerCheck il : allLocations) {
|
||||
GetItemLocation(il)->RemoveFromPool();
|
||||
}
|
||||
|
||||
for (const RandomizerCheck il : StaticData::dungeonRewardLocations) {
|
||||
GetItemLocation(il)->RemoveFromPool();
|
||||
}
|
||||
|
||||
for (const RandomizerCheck il : StaticData::GetGossipStoneLocations()) {
|
||||
GetItemLocation(il)->RemoveFromPool();
|
||||
}
|
||||
|
||||
for (const RandomizerCheck il : StaticData::GetStaticHintLocations()) {
|
||||
GetItemLocation(il)->RemoveFromPool();
|
||||
for (auto& il : itemLocationTable) {
|
||||
il.RemoveFromPool();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue