forked from KotGaming/DiscoSheep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added config file, added config file reload command, and registered p…
…ermissions in plugin.yml
- Loading branch information
Showing
4 changed files
with
74 additions
and
15 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,35 @@ | ||
name: DiscoSheep | ||
main: gibstick.bukkit.discosheep.DiscoSheep | ||
version: 0.9 | ||
authors: [Gibstick, RangerMauve] | ||
version: 1.0 | ||
commands: | ||
ds: | ||
description: "Main DiscoSheep command" | ||
usage: /ds [arguments] | ||
usage: | | ||
<command> <subcommand> [arguments] | ||
Use /ds help for more information | ||
permissions: | ||
discosheep.*: | ||
description: Permission node for all DiscoSheep commands | ||
default: op | ||
children: | ||
discosheep.party: true | ||
discosheep.partyall: true | ||
discosheep.fireworks: true | ||
discosheep.stop: true | ||
discosheep.reload: true | ||
discosheep.party: | ||
description: Allows a player to have a party of one | ||
default: op | ||
discosheep.partyall: | ||
description: Allows a player to call a server-wide party | ||
default: op | ||
discosheep.stop: | ||
description: Allows a player to stop all parties on the server | ||
default: op | ||
discosheep.fireworks: | ||
description: Allows a player to enable have parties with fireworks | ||
default: op | ||
discosheep.reload: | ||
description: Allows a player to reload settings from config.yml | ||
default: op |