001package net.minecraft.tileentity;
002
003public class TileEntityDropper extends TileEntityDispenser
004{
005 /**
006 * Returns the name of the inventory.
007 */
008 public String getInvName()
009 {
010 return this.isInvNameLocalized() ? this.field_94050_c : "container.dropper";
011 }
012}