Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Rolleander committed Oct 29, 2023
1 parent 1a09592 commit a60da47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,4 @@ public DummyLobbyPlayer() {
super(new DummyPlayer<>());
}

@Override
public boolean isOnline() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ public void sendTCP(Object object) {
public void sendUDP(Object object) {

}

@Override
public boolean isOnline() {
return false;
}
}

0 comments on commit a60da47

Please sign in to comment.