Skip to content

Commit

Permalink
Telnet, fix cursor position bug
Browse files Browse the repository at this point in the history
  • Loading branch information
veniware committed May 13, 2024
1 parent 0dcb6a0 commit 4961a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Protest/Front/telnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -610,8 +610,8 @@ class Telnet extends Window {
return 3;
}
else if (values.length > 1) {
this.cursor.x = values[0];
this.cursor.y = values[1];
this.cursor.x = values[1];
this.cursor.y = values[0];
}
break;

Expand Down

0 comments on commit 4961a96

Please sign in to comment.