Skip to content

Commit a40e0e1

Browse files
committed
fixed sign for AgentFacingAgent
1 parent 4a8aaf2 commit a40e0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GW2EIBuilders/Resources/JS/CR-JS/decorations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function masterToMasterRotationFetcher(connection, master, dstMaster, start, end
136136
x: dst.x - origin.x,
137137
y: dst.y - origin.y,
138138
}
139-
return -ToDegrees(Math.atan2(vector.y, vector.x));
139+
return ToDegrees(Math.atan2(vector.y, vector.x));
140140
}
141141

142142
const RotationOffsetMode = {

0 commit comments

Comments
 (0)