Skip to content

Commit

Permalink
Fic typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iquelli committed Mar 21, 2024
1 parent d8c4b9f commit 4663bad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public int playerRejoin(String playerName) {

PrisonEscapePlayer player = getPlayerOnPoliceTeam(playerName);
if (player != null) {
teleportPoliceTPSpawnPoint(player);
teleportPoliceToSpawnPoint(player);
}
else {
player = getPlayerOnPrisionersTeam(playerName);
Expand Down Expand Up @@ -442,7 +442,7 @@ private void distributePlayersPerTeam() {
// # Locations #
// #########################################

private void teleportPoliceTPSpawnPoint(PrisonEscapePlayer player) {
private void teleportPoliceToSpawnPoint(PrisonEscapePlayer player) {
int playerIndex = _policeTeam.getPlayerIndex(player);
BukkitTeleporter.teleport(player, _prison.getPoliceSpawnLocation(playerIndex));
}
Expand Down

0 comments on commit 4663bad

Please sign in to comment.