forked from TAIGA/TAIGA
general code cleanup
added new StateMatcher
This commit is contained in:
@@ -2,11 +2,10 @@ package items;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class BasicItem extends Item{
|
||||
|
||||
public BasicItem(String name) {
|
||||
setUnlocalizedName(name);
|
||||
setRegistryName(name);
|
||||
}
|
||||
public class BasicItem extends Item {
|
||||
|
||||
BasicItem(String name) {
|
||||
setUnlocalizedName(name);
|
||||
setRegistryName(name);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
package items;
|
||||
|
||||
public class ItemSlagiron extends BasicItem{
|
||||
|
||||
public ItemSlagiron() {
|
||||
super("slagiron");
|
||||
}
|
||||
|
||||
public class ItemSlagiron extends BasicItem {
|
||||
|
||||
public ItemSlagiron() {
|
||||
super("slagiron");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user