mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-14 10:34:41 +02:00
[trunk] RB #766
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1403 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
@@ -24,7 +24,7 @@ import org.bukkit.plugin.java.*;
|
|||||||
public class Essentials extends JavaPlugin
|
public class Essentials extends JavaPlugin
|
||||||
{
|
{
|
||||||
public static final String AUTHORS = "Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans and Xeology";
|
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 static final Logger logger = Logger.getLogger("Minecraft");
|
||||||
private Settings settings;
|
private Settings settings;
|
||||||
private EssentialsPlayerListener playerListener;
|
private EssentialsPlayerListener playerListener;
|
||||||
|
@@ -426,4 +426,19 @@ public class OfflinePlayer implements Player
|
|||||||
{
|
{
|
||||||
throw new UnsupportedOperationException("Not supported yet.");
|
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.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -488,4 +488,19 @@ public class PlayerWrapper implements Player
|
|||||||
{
|
{
|
||||||
base.incrementStatistic(ststc, mtrl, i);
|
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.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user