mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-20 18:10:44 -04:00
Minor adjustment to the aoe script
This commit is contained in:
parent
5ce0cff538
commit
f17112ecf8
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass
|
|||
endAngle = args[5]
|
||||
circle.graphics.beginFill(args[3])
|
||||
.lineTo(0, 0)
|
||||
.lineTo(radius * Math.cos(startAngle), radius * Math.sin(endAngle))
|
||||
.lineTo(radius * Math.cos(startAngle), radius * Math.sin(startAngle))
|
||||
.arc(0, 0, radius, startAngle, endAngle)
|
||||
.lineTo(0, 0)
|
||||
circle.x = pos.x
|
||||
|
|
Loading…
Reference in a new issue