File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -688,14 +688,14 @@ void PlayerMixin::SetActiveDevices(unsigned char value)
688
688
689
689
float PlayerMixin::GetSuitPowerLoad ()
690
690
{
691
- static int offset = FindNetworkPropertyOffset (" m_flSuitPowerLoad" );
692
- return GetNetworkPropertyByOffset <float >(offset);
691
+ static int offset = FindDatamapPropertyOffset (" m_flSuitPowerLoad" );
692
+ return GetDatamapPropertyByOffset <float >(offset);
693
693
}
694
694
695
695
void PlayerMixin::SetSuitPowerLoad (float value)
696
696
{
697
- static int offset = FindNetworkPropertyOffset (" m_flSuitPowerLoad" );
698
- SetNetworkPropertyByOffset <float >(offset, value);
697
+ static int offset = FindDatamapPropertyOffset (" m_flSuitPowerLoad" );
698
+ SetDatamapPropertyByOffset <float >(offset, value);
699
699
}
700
700
701
701
You can’t perform that action at this time.
0 commit comments