Skip to content

Commit

Permalink
Merge pull request #22 from Die4Ever/arch-cmd-ping
Browse files Browse the repository at this point in the history
archipelago ping command for testing, respond with pong
  • Loading branch information
Crazycolbster authored May 27, 2024
2 parents 93424df + 804d5b7 commit 07458c9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/modules/archipelagoConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,12 @@ function ac_req(data) {//This is what we do when we receive a data packet
}
saveArchipelagoProgress();
}
break;

case "Ping":
data.cmd = "Pong";
connection.send(data);
break;
}
return;
}
Expand Down

0 comments on commit 07458c9

Please sign in to comment.