feat: support mc 1.14.4

Signed-off-by: MiaoWoo <admin@yumc.pw>
master
MiaoWoo 2019-08-27 09:58:18 +08:00
parent 9946f5caed
commit ecfd140ca8
2 changed files with 149 additions and 147 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>Yum</artifactId>
<version>2.8.0</version>
<version>2.8.1</version>
<packaging>jar</packaging>
<description>Minecraft 服务器插件管理系统</description>
@ -16,8 +16,9 @@
</parent>
<properties>
<update.description>§a补丁包 2.8 版本</update.description>
<update.description>§a补丁包 2.8.1 版本</update.description>
<update.changes>
§619-08-26 §cfix: 修复不兼容 1.14.4 的问题;
§619-02-23 §cfix: 修复不兼容 1.13 的问题;
</update.changes>
<update.changelog>

View File

@ -27,10 +27,11 @@ public class PluginNetworkEvent extends Event implements Cancellable {
*
* @param url
*
* @param isMainThread
* @param isPrimaryThread
* 线
*/
public PluginNetworkEvent(Plugin plugin, URI url, boolean isPrimaryThread) {
super(true);
this.plugin = plugin;
this.url = url;
this.isPrimaryThread = isPrimaryThread;