@Override
 public ItemStack getStackInSlot(int slot) {
   if (!formed) return null;
   TileEntityBottlingMachine master = master();
   if (master != null) return master.getStackInSlot(slot);
   if (slot < inventory.length) return inventory[slot];
   return null;
 }