feat: 在插件卸载时关闭 AudienceProvider

This commit is contained in:
2025-07-06 05:57:57 +08:00
parent 68747f76bb
commit ad216ef89b
6 changed files with 14 additions and 6 deletions

View File

@@ -24,9 +24,9 @@ repositories {
dependencies {
// 对于 Bukkit 插件
compileOnly("cn.hamster3.mc.plugin:core-bukkit:1.4.0")
compileOnly("cn.hamster3.mc.plugin:core-bukkit:1.4.1")
// 对于 BungeeCord 插件
compileOnly("cn.hamster3.mc.plugin:core-bungee:1.4.0")
compileOnly("cn.hamster3.mc.plugin:core-bungee:1.4.1")
}
```
@@ -52,13 +52,13 @@ dependencies {
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>core-bukkit</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
</dependency>
<!--对于 BungeeCord 插件-->
<dependency>
<groupId>cn.hamster3.mc.plugin</groupId>
<artifactId>core-bungee</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
</dependency>
</dependencies>
</project>