Skip to content

Commit

Permalink
Removed SPID_Processed keyword requirement.
Browse files Browse the repository at this point in the history
Needs more testing :)
  • Loading branch information
adya committed Jan 7, 2025
1 parent b6e2f4b commit e85e348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SPID/src/DistributeManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ namespace Distribute
{
bool detail::should_process_NPC(RE::TESNPC* a_npc, RE::BGSKeyword* a_keyword)
{
if (a_npc->IsPlayer() || a_npc->IsDeleted() || a_npc->HasKeyword(a_keyword)) {
if (a_npc->IsPlayer() || a_npc->IsDeleted()) {
return false;
}

a_npc->AddKeyword(a_keyword);
//a_npc->AddKeyword(a_keyword);

return true;
}
Expand Down

0 comments on commit e85e348

Please sign in to comment.