Skip to content

Commit fbe292a

Browse files
authored
Compatibility | loading too late fix
compatibility down to Bukkit, Spigot and Paper 1.8 and above. changed how and when the plugin should be loaded on startup to give UltraCommand full control over all commands you may want to create, for example you can create custom command overrides to replace any existing command! e.g. you can easily cover /op with the following example: /ud add text op &6&l&oExamplePrefix &f&l&o> &cYou can NOT use this command /ud add pcmd op me Just attempted to run /op /uc add text minecraft:op &6&l&oExamplePrefix &f&l&o> &cNice try, but you can NOT use this command even with a prefix. /ud add pcmd minecraft:op me Just attempted to run /minecraft:op Those 2 basic commands will block the /op command from being used even by your admins and report in chat what they did, of course you can customize this to your likening. don't forget that each command created generates it's own permission, so be sure to give the permission node for your new commands to everyone. (ultracommand.commands.op | ultracommand.commands.minecraft:op)
1 parent 89b3b50 commit fbe292a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plugin.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
name: UltraCommand
2-
version: 1.0.0
2+
version: 1.0.1
33
authors: [rmellis, Kier Davis]
44
main: com.kierdavis.ultracommand.UltraCommand
5-
5+
description: UltraCommand allows minecraft server admins to define unlimited custom commands.
6+
load: STARTUP
7+
website: https://github.com/rmellis/UltraCommand
8+
loadbefore: [Essentials, CMI]
69
commands:
710
uc:
8-
description: UltraCommand alias
11+
description: UltraCommand
912
ultracommand:
10-
description: UltraCommand main command
11-
13+
description: UltraCommand
1214
permissions:
1315
ultracommand.configure:
1416
description: Gives access to the /uc and /ultracommand commands.
1517
default: op
16-
1718
ultracommand.commands.*:
1819
description: Gives access to all custom commands defined with this plugin.
1920
default: op
20-
2121
ultracommand.commands.<name>:
2222
description: Gives access to the custom command named <name>.

0 commit comments

Comments
 (0)