mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2025-02-17 04:41:23 +01:00
Added team coop and trust perms
This commit is contained in:
parent
a158fe5cff
commit
bd72ef4282
@ -18,6 +18,10 @@ import world.bentobox.bentobox.api.commands.island.IslandSetnameCommand;
|
|||||||
import world.bentobox.bentobox.api.commands.island.IslandSettingsCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandSettingsCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.IslandUnbanCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandUnbanCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.team.IslandTeamCommand;
|
import world.bentobox.bentobox.api.commands.island.team.IslandTeamCommand;
|
||||||
|
import world.bentobox.bentobox.api.commands.island.team.IslandTeamCoopCommand;
|
||||||
|
import world.bentobox.bentobox.api.commands.island.team.IslandTeamTrustCommand;
|
||||||
|
import world.bentobox.bentobox.api.commands.island.team.IslandTeamUncoopCommand;
|
||||||
|
import world.bentobox.bentobox.api.commands.island.team.IslandTeamUntrustCommand;
|
||||||
import world.bentobox.bentobox.api.user.User;
|
import world.bentobox.bentobox.api.user.User;
|
||||||
|
|
||||||
public class AiCommand extends CompositeCommand {
|
public class AiCommand extends CompositeCommand {
|
||||||
@ -53,6 +57,10 @@ public class AiCommand extends CompositeCommand {
|
|||||||
new IslandBanlistCommand(this);
|
new IslandBanlistCommand(this);
|
||||||
// Team commands
|
// Team commands
|
||||||
new IslandTeamCommand(this);
|
new IslandTeamCommand(this);
|
||||||
|
new IslandTeamTrustCommand(this);
|
||||||
|
new IslandTeamUntrustCommand(this);
|
||||||
|
new IslandTeamCoopCommand(this);
|
||||||
|
new IslandTeamUncoopCommand(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
|
@ -50,6 +50,12 @@ permissions:
|
|||||||
acidisland.island.team:
|
acidisland.island.team:
|
||||||
description: Let a player use team commands
|
description: Let a player use team commands
|
||||||
default: true
|
default: true
|
||||||
|
acidisland.island.team.trust:
|
||||||
|
description: Let a player use team trust commands
|
||||||
|
default: true
|
||||||
|
acidisland.island.team.coop:
|
||||||
|
description: Let a player use team coop commands
|
||||||
|
default: true
|
||||||
acidisland.settings.*:
|
acidisland.settings.*:
|
||||||
description: Allow access to settings panel items
|
description: Allow access to settings panel items
|
||||||
default: true
|
default: true
|
||||||
|
Loading…
Reference in New Issue
Block a user