Fix seed generation issues caused by Location Table changes (#4378)
This commit is contained in:
@@ -188,20 +188,8 @@ void Context::ItemReset() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Context::LocationReset() {
|
void Context::LocationReset() {
|
||||||
for (const RandomizerCheck il : allLocations) {
|
for (auto& il : itemLocationTable) {
|
||||||
GetItemLocation(il)->RemoveFromPool();
|
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();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user