Denys88/rl_games

player.determenistic misspelling

Closed this issue · 1 comments

"deterministic" is currently misspelled as "determenistic":

self.is_determenistic = self.player_config.get('determenistic', True)

A few of the cfgs in IsaacGymEnvs (ex.) and OmniIsaacGymEnvs (ex.) use deterministic: True, but this shouldn't affect them since the default value is True.

Might be a good idea to accept both "deterministic" and "determenistic" for backwards compatibility.

@etaoxing thanks for the report.
Fixed it here: #188
I'll run a few tests and merge it.