Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 authored and github-actions[bot] committed Jan 26, 2024
1 parent 23abe97 commit b749cae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/RE/A/Actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -756,17 +756,17 @@ namespace RE
return func(this, a_power);
}

bool Actor::IsDualCasting() const
bool Actor::IsDualCasting() const
{
if (!currentProcess) {
return false;
}

const auto highProcess = currentProcess->high;
const auto highProcess = currentProcess->high;
return highProcess && highProcess->isDualCasting;
}

bool Actor::IsEssential() const
bool Actor::IsEssential() const
{
return boolFlags.all(BOOL_FLAGS::kEssential);
}
Expand Down
4 changes: 2 additions & 2 deletions src/RE/E/ExtraDataList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,14 +282,14 @@ namespace RE
ObjectRefHandle();
}

bool ExtraDataList::HasQuestObjectAlias()
bool ExtraDataList::HasQuestObjectAlias()
{
using func_t = decltype(&ExtraDataList::HasQuestObjectAlias);
REL::Relocation<func_t> func{ RELOCATION_ID(11913, 12052) };
return func(this);
}

void ExtraDataList::SetCount(std::uint16_t a_count)
void ExtraDataList::SetCount(std::uint16_t a_count)
{
using func_t = decltype(&ExtraDataList::SetCount);
REL::Relocation<func_t> func{ Offset::ExtraDataList::SetCount };
Expand Down

0 comments on commit b749cae

Please sign in to comment.