Esempio n. 1
0
  public EntityItem a(ItemStack itemstack, float f) {
    if (itemstack.count != 0 && itemstack.getItem() != null) {
      EntityItem entityitem =
          new EntityItem(this.world, this.locX, this.locY + (double) f, this.locZ, itemstack);

      entityitem.p();
      this.world.addEntity(entityitem);
      return entityitem;
    } else {
      return null;
    }
  }