feat: 添加 load-player-info-filter 配置选项

This commit is contained in:
2024-02-24 16:38:31 +08:00
parent 53c582eb4d
commit 68ba097033
11 changed files with 100 additions and 70 deletions

View File

@@ -44,14 +44,16 @@
```groovy
// 添加仓库
repositories {
maven("https://maven.airgame.net/maven-public/")
maven {
url = uri("https://maven.airgame.net/maven-public/")
}
}
dependencies {
// 对于 Bukkit 插件
compileOnly("cn.hamster3.mc.plugin:ball-bukkit:1.5.1")
compileOnly("cn.hamster3.mc.plugin:ball-bukkit:1.5.2")
// 对于 BungeeCord 插件
compileOnly("cn.hamster3.mc.plugin:ball-bungee:1.5.1")
compileOnly("cn.hamster3.mc.plugin:ball-bungee:1.5.2")
}
```
@@ -77,13 +79,13 @@ dependencies {
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>ball-bukkit</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
<!--对于 BungeeCord 插件-->
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>ball-bungee</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
</dependencies>
</project>