Skip to content

Commit

Permalink
fix: cloudnet luckperms does not load on bungeecord & nukkit (#1547)
Browse files Browse the repository at this point in the history
### Motivation
Due to the usage of platform inject we need to specify the name of the
resulting plugin.yml. Bungeecord and nukkit lack that setting and
therefore try to use the bukkit plugin.yml.

### Modification
Added the pluginFileName for nukkit & bungeecord according to their
plugin loaders.

### Result
The cloudnet luckperms plugin works properly on these platforms.
  • Loading branch information
0utplay authored Nov 14, 2024
1 parent 7aaa1cb commit d4ae7ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
name = "CloudNet-LuckPerms",
authors = "CloudNetService",
version = "@version@",
pluginFileNames = "bungee.yml",
description = "Brings LuckPerms support to all server platforms",
dependencies = @Dependency(name = "LuckPerms")
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
name = "CloudNet-LuckPerms",
version = "@version@",
authors = "CloudNetService",
pluginFileNames = "nukkit.yml",
description = "Brings LuckPerms support to all server platforms",
dependencies = @Dependency(name = "LuckPerms")
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
name = "CloudNet-LuckPerms",
version = "@version@",
authors = "CloudNetService",
pluginFileNames = "waterdog.yml",
dependencies = @Dependency(name = "LuckPerms"),
description = "Brings LuckPerms support to all server platforms"
)
Expand Down

0 comments on commit d4ae7ff

Please sign in to comment.