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)
688688
689689float PlayerMixin::GetSuitPowerLoad ()
690690{
691- static int offset = FindNetworkPropertyOffset (" m_flSuitPowerLoad" );
692- return GetNetworkPropertyByOffset <float >(offset);
691+ static int offset = FindDatamapPropertyOffset (" m_flSuitPowerLoad" );
692+ return GetDatamapPropertyByOffset <float >(offset);
693693}
694694
695695void PlayerMixin::SetSuitPowerLoad (float value)
696696{
697- static int offset = FindNetworkPropertyOffset (" m_flSuitPowerLoad" );
698- SetNetworkPropertyByOffset <float >(offset, value);
697+ static int offset = FindDatamapPropertyOffset (" m_flSuitPowerLoad" );
698+ SetDatamapPropertyByOffset <float >(offset, value);
699699}
700700
701701
You can’t perform that action at this time.
0 commit comments