Skip to content

Commit

Permalink
|TPA] Ajout d'une condition pour vérifier si le joueur fait une deman…
Browse files Browse the repository at this point in the history
…de a lui-même (#105)

*Avez vous lu le [Code de
Conduite](https://github.com/Margouta/PluginOpenMC/blob/main/CODE_OF_CONDUCT.md)?*:
oui

Ajout d'une condition pour vérifier si le joueur fait une demande a
lui-même pour le tpa + réparation du clickevent
  • Loading branch information
Margouta authored Jul 7, 2024
2 parents 9ee929c + e1f7629 commit 4ec649b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/main/java/fr/communaywen/core/tpa/CommandTPA.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,19 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
player.sendMessage("Impossible de trouver le joueur «"+args[0]+"»");
return false;
}

if(player == receiver){
player.sendMessage("Tu ne peux pas faire une demande de téléportation à toi-même !");
return false;
}

tpQueue.TPA_REQUESTS.put(receiver, player);
tpQueue.TPA_REQUESTS2.put(player, receiver);
player.sendMessage("Vous avez envoyé une demande de tpa à " + receiver.getName());

final TextComponent textComponent = Component.text(player.getName() + " vous a envoyé un demande de téléportation faites /tpaccept pour l'accepter")
.color(TextColor.color(255,255,255))
.clickEvent(ClickEvent.clickEvent(ClickEvent.Action.RUN_COMMAND, "tpaccept"))
.clickEvent(ClickEvent.clickEvent(ClickEvent.Action.RUN_COMMAND, "/tpaccept"))
.hoverEvent(HoverEvent.showText(Component.text("§7[§aClique pour accepter§7]")));

plugin.getAdventure().player(receiver).sendMessage(textComponent);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fr/communaywen/core/tpa/CommandTpaccept.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ public boolean onCommand(CommandSender sender, Command command, String label, St
player.sendMessage(ChatColor.RED + "Vous n'avez pas de demande de téléporation");
return true;
}
tpQueue.TPA_REQUESTS.remove(player);
player.sendMessage(tpaplayer.getName()+" va être téléporté à vous dans 3 secondes");
tpaplayer.sendTitle("Téléportation à "+player.getName()," dans 3 secondes...",0,20,40);
new BukkitRunnable() {
@Override
public void run() {
tpaplayer.teleport(player);
tpQueue.TPA_REQUESTS.remove(player);
}
}.runTaskLater(AywenCraftPlugin.getInstance(),60);
return true;
Expand Down

0 comments on commit 4ec649b

Please sign in to comment.