Skip to content

Commit 84d9400

Browse files
RunnerScrabgithub-actions[bot]
authored andcommitted
maintenance
1 parent b344676 commit 84d9400

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

include/RE/B/BGSInventoryInterface.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,17 @@ namespace RE
5454
return *singleton;
5555
}
5656

57-
5857
[[nodiscard]] TESBoundObject* GetInventoryObject(const std::uint32_t& a_handleID) const
5958
{
6059
static REL::Relocation<bool (*)(const BGSInventoryInterface*, const std::uint32_t*, std::uint64_t***)>
61-
subfn{ ID::BGSInventoryInterface::GetInventoryObjectSub };
60+
subfn{ ID::BGSInventoryInterface::GetInventoryObjectSub };
6261

63-
std::uint32_t handle = a_handleID;
64-
std::uint64_t out = 0;
65-
std::uint64_t* outarr[2];
62+
std::uint32_t handle = a_handleID;
63+
std::uint64_t out = 0;
64+
std::uint64_t* outarr[2];
6665
std::uint64_t** pout;
6766
outarr[0] = &out;
68-
pout = (std::uint64_t**) &outarr;
67+
pout = (std::uint64_t**)&outarr;
6968
subfn(this, &handle, &pout);
7069
return reinterpret_cast<TESBoundObject*>(out);
7170
}

include/RE/IDs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ namespace RE::ID
3838
namespace ActorEquipManager
3939
{
4040
inline constexpr REL::ID Singleton{ 938503 }; // 879425
41-
inline constexpr REL::ID EquipObject{ 0 }; // 151991 -> TODO: Verify 101949 in 1.15
42-
inline constexpr REL::ID UnequipObject{ 0 }; // 152007 -> TODO: Verify 101951 in 1.15
41+
inline constexpr REL::ID EquipObject{ 0 }; // 151991 -> TODO: Verify 101949 in 1.15
42+
inline constexpr REL::ID UnequipObject{ 0 }; // 152007 -> TODO: Verify 101951 in 1.15
4343
}
4444

4545
namespace ActorCellChangeEvent::Event

0 commit comments

Comments
 (0)