Build with Bukkit 1.7.9

This commit is contained in:
Sn0wStorm 2014-06-06 01:36:22 +02:00
parent e8c905e19f
commit abce80e2ab
2 changed files with 2 additions and 3 deletions

View File

@ -123,7 +123,7 @@
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3</version>
<version>1.7.9-R0.2</version>
<scope>provided</scope>
</dependency>

View File

@ -62,7 +62,6 @@ public class P extends JavaPlugin {
// Version check
String v = Bukkit.getBukkitVersion();
useUUID = !v.matches(".*1\\.[1-6].*") && !v.matches(".*1\\.7\\.[0-5].*");
P.p.log("Bukkit Version: " + v + "uuid: " + useUUID);
readConfig();
readData();
@ -683,7 +682,7 @@ public class P extends JavaPlugin {
if (useUUID) {
try {
return Bukkit.getPlayer(UUID.fromString(name));
} catch (IllegalArgumentException e) {
} catch (Exception e) {
return Bukkit.getPlayerExact(name);
}
}