1

Removed hardcoded Fishing CC patch

This commit is contained in:
Eddoursul 2022-07-07 16:48:20 +02:00
parent b7ba6e6d7b
commit f2cbb5ea8a
2 changed files with 1 additions and 10 deletions

View File

@ -86,7 +86,7 @@ SpaceBeforeRangeBasedForLoopColon: 'true'
SpaceBeforeSquareBrackets: 'false'
SpaceInEmptyBlock: 'false'
SpaceInEmptyParentheses: 'false'
SpacesBeforeTrailingComments: 2
SpacesBeforeTrailingComments: 1
SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
SpacesInConditionalStatement: 'false'

View File

@ -119,15 +119,6 @@ namespace ArtifactTracker
}
}
// Fishing CC (remove after KID receives formlist support)
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();
g_bLoaded = true;