code-battles 1.2.0 → 1.2.1

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.
@@ -160,7 +160,7 @@ class GameCanvas:
160
160
  self.context.fillStyle = fill
161
161
  self.context.strokeStyle = stroke
162
162
  self.context.beginPath()
163
- self.context.arc(x, y, radius, 0, 2 * math.pi)
163
+ self.context.arc(x, y, radius * self._scale, 0, 2 * math.pi)
164
164
  self.context.stroke()
165
165
  self.context.fill()
166
166
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-battles",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
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",