Recent content by RimeOrReason

  1. R

    Make Furnace Light When Certain Blocks are Around It

    Simplified it and fixed, works like you said you wanted it to. Here's the whole class: public class FurnaceListener implements Listener { private static final ArrayList<BlockFace> faces = new ArrayList<>(); private static final short burntime = Short.MAX_VALUE; static {...
  2. R

    Question How do i get nbt tags

    I don't know if there's a better way but you can use tr7zw's item nbt api, create a new NBTItem with the itemstack you have and then use hasTag and setString, setInt etc. methods according to what you need. An example in kotlin: val item = ItemStack(Material.HOPPER) val nbtitem = NBTItem(item)...