git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1403 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo 2011-05-10 12:23:18 +00:00
parent 08136ab0ad
commit 31a2d1b2d9
3 changed files with 31 additions and 1 deletions

View File

@ -24,7 +24,7 @@ import org.bukkit.plugin.java.*;
public class Essentials extends JavaPlugin
{
public static final String AUTHORS = "Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans and Xeology";
public static final int minBukkitBuildVersion = 740;
public static final int minBukkitBuildVersion = 766;
private static final Logger logger = Logger.getLogger("Minecraft");
private Settings settings;
private EssentialsPlayerListener playerListener;

View File

@ -426,4 +426,19 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void playNote(Location lctn, byte b, byte b1)
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void sendBlockChange(Location lctn, Material mtrl, byte b)
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void sendBlockChange(Location lctn, int i, byte b)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}

View File

@ -488,4 +488,19 @@ public class PlayerWrapper implements Player
{
base.incrementStatistic(ststc, mtrl, i);
}
public void playNote(Location lctn, byte b, byte b1)
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void sendBlockChange(Location lctn, Material mtrl, byte b)
{
throw new UnsupportedOperationException("Not supported yet.");
}
public void sendBlockChange(Location lctn, int i, byte b)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}