Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

Commit

Permalink
remove unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
yugecin committed Jan 30, 2020
1 parent 18928ac commit cab5106
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/yugecin/opsudance/movers/KnorkeMover.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,6 @@ public KnorkeMover(GameObject start, GameObject end, int dir) {
double y = e.y + Math.sin(newAngle + d) * maxdist;
int m = (int) (x / width);
int n = (int) (y / height);
if (x < 0) {
x = -x;
}
if (y < 0) {
y = -y;
}
if (Math.abs(m) % 2 == 1) {
endX = width - e.x;
mirrorx = true;
Expand Down

0 comments on commit cab5106

Please sign in to comment.