Skip to content

Commit

Permalink
Update gameLoopHandlers.gml
Browse files Browse the repository at this point in the history
  • Loading branch information
evolutionleo committed Dec 4, 2024
1 parent 55ddebc commit b2aefed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Client/scripts/gameLoopHandlers/gameLoopHandlers.gml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ addHandler("play", function(data) {
})


addHandler("reconnect", function(data) {
trace("reconnected!")
})

// changing rooms
addHandler("room transition", function(data) {
if (use_timestamps(data)) return;
Expand Down Expand Up @@ -88,4 +84,8 @@ addHandler("game over", function(data) {
addHandler("mmr change", function(data) {
var delta = data.delta
var new_mmr = data.new_mmr
})

addHandler("reconnect", function(data) {
trace("reconnected!")
})

0 comments on commit b2aefed

Please sign in to comment.