diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-09-05 20:57:51 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-09-05 21:36:21 -0400 |
| commit | 6706fae4a88b04d0a290e246b33eba313841e338 (patch) | |
| tree | 3bb84fe39505095e071462e573772cf28a3e7379 /src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java | |
| parent | 6e097a5056ad343271e21109f593f7cb77e4667e (diff) | |
Yet more affix work
Diffstat (limited to 'src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java')
| -rwxr-xr-x | src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java b/src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java index c658f8d..6ee4add 100755 --- a/src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java +++ b/src/main/java/darkknight/jewelrycraft/item/ItemBaseJewelry.java @@ -34,7 +34,13 @@ public abstract class ItemBaseJewelry extends Item { setCreativeTab(JewelrycraftMod.jewelrycraft);
}
-
+
+ /**
+ * @return Returns the id of the type, 0 is for ring, 1 is for bracelet, 2 is
+ * for necklace and 3 is for earrings
+ */
+ public abstract int type();
+
@Override
public boolean requiresMultipleRenderPasses() {
return true;
|
