package com.agilemods.materiamuto.common.item.rings;
import com.agilemods.materiamuto.common.item.prefab.MMItem;
public class ItemIronBand extends MMItem {
public ItemIronBand() {
super();
setMaxStackSize(1);
}
@Override
public String getIcon() {
return "rings/iron_band";
}
}