Clipboard.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Someone Else 37

Forum Addict
Feb 10, 2013
1,876
1,440
168
<insert my ENTIRE character sheet here>

Huh. I was writing a PM and copied it to my clipboard before sending it in case something weird happened.
 
  • Like
Reactions: xTordX

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
Code:
@Override
public void onBlockClicked(World world, int x, int y, int z, EntityPlayer player) {
    ItemStack[] items = new ItemStack[9];
    ItemStack item = craft(items, world, CraftingManager.getInstance(), 3, 3, true);
    if (item != null) {
        world.spawnEntityInWorld(new EntityItem(world, player.posX, player.posY, player.posZ, item));
    }
}
Anyone know how to get an ItemStack/EntityItem from a position ;)
 

Chaka

FTB Team
Mod Developer
Retired Staff
Dec 24, 2013
928
323
103
New Jersey
Code:
@Override
public void onBlockClicked(World world, int x, int y, int z, EntityPlayer player) {
    ItemStack[] items = new ItemStack[9];
ItemStack item = craft(items, world, CraftingManager.getInstance(), 3, 3, true);
if (item != null) {
    world.spawnEntityInWorld(new EntityItem(world, player.posX, player.posY, player.posZ, item));}
}
Anyone know how to get an ItemStack/EntityItem from a position ;)
Umm, Idk... Ask @ljfa