Added LocalWorld.playEffect and an implementation for Bukkit.

This commit is contained in:
TomyLobo
2011-11-28 07:13:19 +01:00
parent a6f0a48f84
commit 36fbfa409f
2 changed files with 33 additions and 0 deletions

View File

@ -343,4 +343,15 @@ public abstract class LocalWorld {
public void fixLighting(Iterable<BlockVector2D> chunks) {
}
/**
* Plays the minecraft effect with the given type and data at the given position.
*
* @param position
* @param type
* @param data
*/
public boolean playEffect(Vector position, int type, int data) {
return false;
}
}