1

Added Fishing CC support

This commit is contained in:
Eddoursul 2022-07-03 12:13:53 +02:00
parent 137b2e175f
commit b5c5e3e109
2 changed files with 9 additions and 0 deletions

Binary file not shown.

View File

@ -73,6 +73,15 @@ namespace ArtifactTracker
}
}
// Fishing CC
const auto plaqueFish = dataHandler->LookupForm<RE::BGSListForm>(0xF4B, "ccBGSSSE001-Fish.esm"); // ccBGSSSE001_FishPlaqueGiftFilterList
if (plaqueFish) {
plaqueFish->ForEachForm([&](RE::TESForm& a_form) {
g_artifactMap[a_form.formID] = &a_form;
return true;
});
}
OnGameLoad();
EventListener::Install();
}