code-battles 1.6.2 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -534,6 +534,7 @@ class CodeBattles(
534
534
  self.step = 0
535
535
  self.active_players = list(range(len(self.player_names)))
536
536
  self.random = Random(seed)
537
+ self.make_decisions_random = Random(self.random.randint(0, 2**128))
537
538
  self.player_randoms = [
538
539
  Random(self.random.randint(0, 2**128)) for _ in self.player_names
539
540
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-battles",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "A library for building interactive competitive coding battles",
5
5
  "repository": "https://github.com/noamzaks/code-battles",
6
6
  "homepage": "https://code-battles.readthedocs.org",