Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions src/main/java/fr/communaywen/core/AywenCraftPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,7 @@
import fr.communaywen.core.staff.freeze.FreezeCommand;
import fr.communaywen.core.staff.players.PlayersCommand;
import fr.communaywen.core.tab.TabList;
import fr.communaywen.core.tpa.TPACommand;
import fr.communaywen.core.tpa.TpacceptCommand;
import fr.communaywen.core.tpa.TpcancelCommand;
import fr.communaywen.core.tpa.TpdenyCommand;
import fr.communaywen.core.tpa.*;
import fr.communaywen.core.trade.TradeAcceptCommand;
import fr.communaywen.core.trade.TradeCommand;
import fr.communaywen.core.trade.TradeListener;
Expand Down Expand Up @@ -185,7 +182,9 @@ public void onEnable() {
new ScoreboardCommand(),
new ProutCommand(),
new TPACommand(this),
new TpacceptCommand(this), // Pass the plugin instance
new TpacceptCommand(this),
new TpcancelCommand(),
new TPAGUICommand(this),
new TpcancelCommand(),
new TpdenyCommand(),
new CreditCommand(),
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fr/communaywen/core/tpa/TPACommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import revxrsal.commands.bukkit.annotation.CommandPermission;

@Feature("TPA")
@Credit({"ddemile", "Axillity", "misieur", "process"})
@Credit({"Axillity", "ddemile", "misieur", "process"})
public class TPACommand implements Listener {

private final AywenCraftPlugin plugin;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/fr/communaywen/core/tpa/TPAGUICommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import revxrsal.commands.annotation.Command;
import revxrsal.commands.bukkit.annotation.CommandPermission;

@Feature("TPA")
@Credit({"ddemile", "Axillity", "misieur", "process"})
@Feature("TPAGUI")
@Credit({"Axillity"})
public class TPAGUICommand implements Listener {

private final AywenCraftPlugin plugin;
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ permissions:
ayw.command.rules:
description: 'Rules'
default: true
ayw.command.tpagui:
description: 'tpagui'
default: true
ayw.command.rtp:
description: 'rtp'
default: true
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ teams: "https://wiki.openmc.fr/commandes/gestion-des-teams"
dormir: "https://wiki.openmc.fr/features/dormir"
fun: "https://wiki.openmc.fr/commandes/fun"
prout: "https://wiki.openmc.fr/commandes/fun"
contribuer: "https://wiki.openmc.fr/contribuer"
contribuer: "https://wiki.openmc.fr/contribuer"
tpa: "https://wiki.openmc.fr/commandes/teleportation"