-
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.
fix: implement miniplaceholders correctly
- Loading branch information
1 parent
235add4
commit 0f56d58
Showing
2 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
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,30 +1,31 @@ | ||
plugins { | ||
id("webhookchatlogger.platform-conventions") | ||
alias(libs.plugins.pluginYml) | ||
id("webhookchatlogger.platform-conventions") | ||
alias(libs.plugins.pluginYml) | ||
} | ||
|
||
dependencies { | ||
compileOnly(libs.platform.paper) | ||
compileOnly(libs.platform.paper) | ||
|
||
implementation(libs.bstats.bukkit) | ||
implementation(libs.bstats.bukkit) | ||
} | ||
|
||
bukkit { | ||
main = "fi.fabianadrian.webhookchatlogger.paper.WebhookChatLoggerPaper" | ||
name = rootProject.name | ||
apiVersion = "1.17" | ||
authors = listOf("FabianAdrian") | ||
website = "https://github.com/fabianmakila/WebhookChatLogger" | ||
commands { | ||
register("webhookchatlogger") { | ||
aliases = listOf("wcl") | ||
description = "WebhookChatLogger main command" | ||
permission = "webhookchatlogger.reload" | ||
} | ||
} | ||
permissions { | ||
register("webhookchatlogger.reload") { | ||
description = "Allows you to run the reload command" | ||
} | ||
} | ||
main = "fi.fabianadrian.webhookchatlogger.paper.WebhookChatLoggerPaper" | ||
name = rootProject.name | ||
apiVersion = "1.17" | ||
authors = listOf("FabianAdrian") | ||
website = "https://github.com/fabianmakila/WebhookChatLogger" | ||
softDepend = listOf("MiniPlaceholders") | ||
commands { | ||
register("webhookchatlogger") { | ||
aliases = listOf("wcl") | ||
description = "WebhookChatLogger main command" | ||
permission = "webhookchatlogger.reload" | ||
} | ||
} | ||
permissions { | ||
register("webhookchatlogger.reload") { | ||
description = "Allows you to run the reload command" | ||
} | ||
} | ||
} |