Skip to content

Commit

Permalink
style: add missing "this."
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmakila committed Oct 22, 2023
1 parent 4bdc8c2 commit bc78216
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void onProxyInitialization(ProxyInitializeEvent event) {
return ((VelocityConsoleCommander) commander).commandSource();
}

Optional<Player> playerOptional = server.getPlayer(((User) commander).uuid());
Optional<Player> playerOptional = this.server.getPlayer(((User) commander).uuid());
if (playerOptional.isPresent()) {
return playerOptional.get();
}
Expand Down

0 comments on commit bc78216

Please sign in to comment.