初始化提交

This commit is contained in:
2022-11-06 18:37:18 +08:00
commit 0a77aef84e
55 changed files with 3550 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# hamster-admin-command
| 命令 | 描述 |
|:------------|:---------|
| /feed [玩家名] | 恢复玩家的饱食度 |
| /heal [玩家名] | 治疗玩家 |
| /fly [玩家名] | 治疗玩家 |
| /head [玩家名] | 获取玩家的头颅 |

View File

@@ -0,0 +1,14 @@
version = '1.0.0'
setArchivesBaseName("HamsterAdminCommand")
dependencies {
compileOnly 'org.spigotmc:spigot-api:1.19.2-R0.1-SNAPSHOT'
}
processResources {
inputs.property "version", project.version
filesMatching("plugin.yml") {
expand "version": project.version
}
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
}