Fixed comparison

This commit is contained in:
Guillermo 2023-04-12 14:31:47 +02:00 committed by bernat
parent 43620bcc07
commit 9ac5a11752
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ namespace rpc {
(deterministic_ragdolls == rhs.deterministic_ragdolls) &&
(tile_stream_distance == tile_stream_distance) &&
(actor_active_distance == actor_active_distance) &&
(spectator_as_ego == spectator_as_ego);
(spectator_as_ego == rhs.spectator_as_ego);
}
bool operator!=(const EpisodeSettings &rhs) const {