fix: 修复TellRaw发包发送

Signed-off-by: 502647092 <admin@yumc.pw>
merge/8/HEAD
502647092 2017-07-24 23:51:35 +08:00
parent 6783da66f7
commit cc7f1b4a7c
2 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>pw.yumc</groupId> <groupId>pw.yumc</groupId>
<artifactId>MiaoChat</artifactId> <artifactId>MiaoChat</artifactId>
<version>1.8.2</version> <version>1.8.3</version>
<build> <build>
<finalName>${project.name}</finalName> <finalName>${project.name}</finalName>
<resources> <resources>
@ -72,6 +72,7 @@
<properties> <properties>
<update.description>§a正式版本 §bv${project.version}</update.description> <update.description>§a正式版本 §bv${project.version}</update.description>
<update.changes> <update.changes>
§617-07-24 §c修复: 兼容 1.12 版本;
§617-05-21 §c修复: BungeeCord未分配分组时报错; §617-05-21 §c修复: BungeeCord未分配分组时报错;
§617-04-07 §c修复: 控制台重复输出聊天信息; §617-04-07 §c修复: 控制台重复输出聊天信息;
</update.changes> </update.changes>
@ -100,7 +101,7 @@
<groupId>pw.yumc</groupId> <groupId>pw.yumc</groupId>
<artifactId>YumCore</artifactId> <artifactId>YumCore</artifactId>
<type>jar</type> <type>jar</type>
<version>1.7</version> <version>[1.8,)</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -40,7 +40,7 @@ public class ChatListener implements Listener {
public ChatListener() { public ChatListener() {
Bukkit.getPluginManager().registerEvents(this, P.instance); Bukkit.getPluginManager().registerEvents(this, P.instance);
new Statistics(); new Statistics();
new SubscribeTask(true, true); new SubscribeTask(true, SubscribeTask.UpdateType.MAVEN);
} }
@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true) @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)