Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnCorby committed Mar 29, 2022
2 parents b112d19 + 86a177b commit 833ef84
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions QSB/Player/PlayerInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,10 @@ public void Reset()

public void UpdateObjectsFromStates()
{
if (OWInput.GetInputMode() == InputMode.None)
{
// ? why is this here lmao
return;
}

if (CameraBody == null)
{
return;
}

FlashLight?.UpdateState(FlashlightActive);
Translator?.ChangeEquipState(TranslatorEquipped);
ProbeLauncher?.ChangeEquipState(ProbeLauncherEquipped);
Signalscope?.ChangeEquipState(SignalscopeEquipped);
FlashLight.UpdateState(FlashlightActive);
Translator.ChangeEquipState(TranslatorEquipped);
ProbeLauncher.ChangeEquipState(ProbeLauncherEquipped);
Signalscope.ChangeEquipState(SignalscopeEquipped);
AnimationSync.SetSuitState(SuitedUp);
}

Expand Down

0 comments on commit 833ef84

Please sign in to comment.