Skip to content

Commit

Permalink
fix requestMaxValueChanges (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
otsffs authored Nov 12, 2024
1 parent 4103310 commit cff5144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/client/Services/Generic/ActorValueService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void ActorValueService::BroadcastActorValues() noexcept
float oldMaxValue = actorValuesComponent.CurrentActorValues.ActorMaxValuesList[i];
if (newMaxValue != oldMaxValue)
{
requestValueChanges.Values.insert({i, newValue});
requestMaxValueChanges.Values.insert({i, newMaxValue});
actorValuesComponent.CurrentActorValues.ActorMaxValuesList[i] = newMaxValue;
}
}
Expand Down

0 comments on commit cff5144

Please sign in to comment.