File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments