fix: 修复一般问题

Signed-off-by: 502647092 <admin@yumc.pw>
merge/1/MERGE
502647092 2016-09-19 16:49:34 +08:00
parent 271bbed5da
commit fed4b94a8d
1 changed files with 18 additions and 6 deletions

View File

@ -6,7 +6,6 @@ import java.lang.reflect.Method;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.UUID; import java.util.UUID;
import java.util.logging.Level;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.ChatColor; import org.bukkit.ChatColor;
@ -58,6 +57,9 @@ public class C {
} }
} }
private C() {
}
public static String a(final String str) { public static String a(final String str) {
return "net.minecraft.server." + version + "." + str; return "net.minecraft.server." + version + "." + str;
} }
@ -76,6 +78,9 @@ public class C {
} }
public static class ActionBar { public static class ActionBar {
private ActionBar() {
}
/** /**
* ActionBar * ActionBar
* *
@ -108,6 +113,7 @@ public class C {
try { try {
Thread.sleep(1000); Thread.sleep(1000);
} catch (final InterruptedException e) { } catch (final InterruptedException e) {
// Ignore
} }
time--; time--;
} while (time > 0); } while (time > 0);
@ -139,12 +145,13 @@ public class C {
try { try {
Thread.sleep(1000); Thread.sleep(1000);
} catch (final InterruptedException e) { } catch (final InterruptedException e) {
// Ignore
} }
time--; time--;
} while (time > 0); } while (time > 0);
} }
}).start();; }).start();
} }
/** /**
@ -168,7 +175,7 @@ public class C {
final Object connection = playerConnection.get(player); final Object connection = playerConnection.get(player);
sendPacket.invoke(connection, packet); sendPacket.invoke(connection, packet);
} catch (final Exception ex) { } catch (final Exception ex) {
Log.log(Level.SEVERE, "ActionBar发包错误 %s " + version, ex); Log.debug("ActionBar发包错误 " + version, ex);
} }
} }
@ -192,6 +199,7 @@ public class C {
try { try {
Thread.sleep(1000); Thread.sleep(1000);
} catch (final InterruptedException e) { } catch (final InterruptedException e) {
// Ignore
} }
time--; time--;
} while (time > 0); } while (time > 0);
@ -210,9 +218,7 @@ public class C {
private static Class<?> gameProfileClass; private static Class<?> gameProfileClass;
private static Constructor<?> gameProfileConstructor; private static Constructor<?> gameProfileConstructor;
private static Constructor<?> craftOfflinePlayerConstructor; private static Constructor<?> craftOfflinePlayerConstructor;
private static Method getOnlinePlayers; private static Method getOnlinePlayers;
static { static {
try { try {
// getOnlinePlayers start // getOnlinePlayers start
@ -250,6 +256,9 @@ public class C {
} }
} }
private Player() {
}
/** /**
* 线() * 线()
* *
@ -282,6 +291,9 @@ public class C {
} }
public static class Title { public static class Title {
private Title() {
}
/** /**
* Title * Title
* *
@ -407,7 +419,7 @@ public class C {
sendPacket.invoke(connection, packet); sendPacket.invoke(connection, packet);
} }
} catch (final Exception e) { } catch (final Exception e) {
e.printStackTrace(); Log.debug(e);
} }
} }
} }