Skip to content

Commit

Permalink
misc id updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shad0wshayd3 committed May 29, 2024
1 parent eef2ef9 commit 7cd49c8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ namespace RE

[[nodiscard]] static BGSSynchronizedAnimationManager* GetSingleton()
{
REL::Relocation<BGSSynchronizedAnimationManager**> singleton{ REL::ID(1346879) };
REL::Relocation<BGSSynchronizedAnimationManager**> singleton{ REL::ID(2690996) };
return *singleton;
}

[[nodiscard]] bool IsReferenceInSynchronizedScene(ObjectRefHandle a_ref)
{
using func_t = decltype(&BGSSynchronizedAnimationManager::IsReferenceInSynchronizedScene);
REL::Relocation<func_t> func{ REL::ID(915329) };
REL::Relocation<func_t> func{ REL::ID(2214437) };
return func(this, a_ref);
}

Expand Down
2 changes: 1 addition & 1 deletion CommonLibF4/include/RE/Bethesda/PlayerCharacter.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ namespace RE

[[nodiscard]] static ActorHandle GetPlayerHandle()
{
REL::Relocation<ActorHandle*> singleton{ REL::ID(522947) };
REL::Relocation<ActorHandle*> singleton{ REL::ID(2698072) };
return *singleton;
}

Expand Down
2 changes: 1 addition & 1 deletion CommonLibF4/include/RE/Bethesda/SendHUDMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace RE
inline void ShowHUDMessage(const char* a_message, const char* a_sound, bool a_throttle, bool a_warning)
{
using func_t = decltype(&SendHUDMessage::ShowHUDMessage);
REL::Relocation<func_t> func{ REL::ID(1163005) };
REL::Relocation<func_t> func{ REL::ID(2222440) };
return func(a_message, a_sound, a_throttle, a_warning);
}
}
Expand Down
2 changes: 1 addition & 1 deletion CommonLibF4/include/RE/Bethesda/TESForms.h
Original file line number Diff line number Diff line change
Expand Up @@ -1499,7 +1499,7 @@ namespace RE
[[nodiscard]] bool GetCantWaitHere()
{
using func_t = decltype(&TESObjectCELL::GetCantWaitHere);
REL::Relocation<func_t> func{ REL::ID(376940) };
REL::Relocation<func_t> func{ REL::ID(2200287) };
return func(this);
}

Expand Down
4 changes: 2 additions & 2 deletions CommonLibF4/include/RE/Bethesda/UIMessageQueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ namespace RE
public:
[[nodiscard]] static UIMessageQueue* GetSingleton()
{
REL::Relocation<UIMessageQueue**> singleton{ REL::ID(82123) };
REL::Relocation<UIMessageQueue**> singleton{ REL::ID(2689091) };
return *singleton;
}

void AddMessage(const BSFixedString& a_menu, UI_MESSAGE_TYPE a_type)
{
using func_t = decltype(&UIMessageQueue::AddMessage);
REL::Relocation<func_t> func{ REL::ID(1182019) };
REL::Relocation<func_t> func{ REL::ID(2284929) };
return func(this, a_menu, a_type);
}

Expand Down

0 comments on commit 7cd49c8

Please sign in to comment.