public void onBlockPlace(World world, int x, int y, int z, LivingEntity living) {
SpoutPlayer player = (SpoutPlayer) living;
//Artefakt Lvl 5 d�rfen nicht wieder platziert werden
if(this.is5()){
this.dontPlace = new BlockLocation(world.getName(), x, y, z);
return;
}
//Nachricht, dass Artefakt gebaut wurde
Location l = world.getBlockAt(x, y, z).getLocation();