1
0
mirror of https://e.coding.net/circlecloud/SimpleProtect.git synced 2024-11-22 01:49:03 +00:00

downgrade to java1.7...

Signed-off-by: j502647092 <jtb1@163.com>
This commit is contained in:
j502647092 2015-10-08 00:10:12 +08:00
parent a426fc49f1
commit a552914002
4 changed files with 16 additions and 13 deletions

View File

@ -11,7 +11,7 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>

View File

@ -19,8 +19,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>

View File

@ -10,19 +10,22 @@ import cn.citycraft.SimpleProtect.SimpleProtect;
public class Tip implements Listener {
SimpleProtect plugin;
public Tip(SimpleProtect instance) {
public Tip(final SimpleProtect instance) {
plugin = instance;
}
@EventHandler
public void onJoin(final PlayerJoinEvent e) {
plugin.getServer().getScheduler().runTaskLaterAsynchronously(plugin, () -> {
Player p = e.getPlayer();
String[] msg = plugin.config.getStringArray("Tip.Message");
plugin.getServer().getScheduler().runTaskLaterAsynchronously(plugin, new Runnable() {
@Override
public void run() {
final Player p = e.getPlayer();
final String[] msg = plugin.config.getStringArray("Tip.Message");
for (String s : msg) {
s = s.replaceAll("&", "§");
p.sendMessage(plugin.servername + plugin.pluginname + s);
}
}
}, 15);
}