1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-13 10:04:51 +02:00
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 d3328c6c2b
commit 78af2f65c9
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.");
}
}