Update Bukkit 1.7.5-R0.1

Bukkit 1919 CB: 3039
No UUID update yet.
This commit is contained in:
KHobbits 2014-04-06 15:50:18 +01:00
parent 10de6ac929
commit 737fadc390
5 changed files with 37 additions and 9 deletions

View File

@ -40,8 +40,19 @@
<system>TeamCity</system>
<url>http://ci.ess3.net/</url>
</ciManagement>
<dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>

View File

@ -30,7 +30,6 @@ public class OfflinePlayer implements Player
private final transient IEssentials ess;
private transient Location location = new Location(null, 0, 0, 0, 0, 0);
private transient World world;
private final transient UUID uniqueId = UUID.randomUUID();
@Delegate(types = org.bukkit.OfflinePlayer.class)
private transient org.bukkit.OfflinePlayer base;
private boolean allowFlight = false;
@ -636,12 +635,6 @@ public class OfflinePlayer implements Player
return true;
}
@Override
public UUID getUniqueId()
{
return uniqueId;
}
@Override
public void playNote(Location lctn, Instrument i, Note note)
{
@ -1434,4 +1427,10 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void sendSignChange(Location arg0, String[] arg1) throws IllegalArgumentException
{
throw new UnsupportedOperationException("Not supported yet.");
}
}

View File

@ -784,6 +784,12 @@ public class FakeServer implements Server
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public UUID getUniqueId()
{
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
};
}
@ -1201,4 +1207,16 @@ public class FakeServer implements Server
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Player getPlayer(UUID arg0)
{
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public OfflinePlayer getOfflinePlayer(UUID arg0)
{
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
}

Binary file not shown.

Binary file not shown.