Storage housing
This commit is contained in:
@@ -57,6 +57,8 @@ public final class RS {
|
|||||||
for (FluidStorageType type : FluidStorageType.values()) {
|
for (FluidStorageType type : FluidStorageType.values()) {
|
||||||
e.getRegistry().register(new ItemFluidStoragePart(type));
|
e.getRegistry().register(new ItemFluidStoragePart(type));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
e.getRegistry().register(new ItemStorageHousing());
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TODO
|
/* TODO
|
||||||
|
|||||||
@@ -1,16 +1,12 @@
|
|||||||
package com.raoulvdberge.refinedstorage.item;
|
package com.raoulvdberge.refinedstorage.item;
|
||||||
|
|
||||||
import com.raoulvdberge.refinedstorage.RS;
|
import com.raoulvdberge.refinedstorage.RS;
|
||||||
import com.raoulvdberge.refinedstorage.item.info.ItemInfo;
|
import net.minecraft.item.Item;
|
||||||
|
|
||||||
public class ItemStorageHousing extends ItemBase {
|
public class ItemStorageHousing extends Item {
|
||||||
public ItemStorageHousing() {
|
public ItemStorageHousing() {
|
||||||
super(new ItemInfo(RS.ID, "storage_housing"));
|
super(new Item.Properties().group(RS.MAIN_GROUP));
|
||||||
|
|
||||||
|
this.setRegistryName(RS.ID, "storage_housing");
|
||||||
}
|
}
|
||||||
/* TODO
|
|
||||||
@Override
|
|
||||||
@SideOnly(Side.CLIENT)
|
|
||||||
public void registerModels(IModelRegistration modelRegistration) {
|
|
||||||
modelRegistration.setModel(this, 0, new ModelResourceLocation(info.getId(), "inventory"));
|
|
||||||
}*/
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -267,7 +267,7 @@
|
|||||||
"item.refinedstorage:upgrade.7": "Fortune Upgrade",
|
"item.refinedstorage:upgrade.7": "Fortune Upgrade",
|
||||||
"item.refinedstorage:upgrade.8": "Fortune Upgrade",
|
"item.refinedstorage:upgrade.8": "Fortune Upgrade",
|
||||||
"item.refinedstorage:upgrade.9": "Fortune Upgrade",
|
"item.refinedstorage:upgrade.9": "Fortune Upgrade",
|
||||||
"item.refinedstorage:storage_housing": "Storage Housing",
|
"item.refinedstorage.storage_housing": "Storage Housing",
|
||||||
"item.refinedstorage:filter": "Filter",
|
"item.refinedstorage:filter": "Filter",
|
||||||
"item.refinedstorage.network_card": "Network Card",
|
"item.refinedstorage.network_card": "Network Card",
|
||||||
"item.refinedstorage:wrench": "Wrench",
|
"item.refinedstorage:wrench": "Wrench",
|
||||||
|
|||||||
@@ -7,8 +7,7 @@
|
|||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"G": {
|
"G": {
|
||||||
"type": "forge:ore_dict",
|
"tag": "forge:glass"
|
||||||
"ore": "blockGlass"
|
|
||||||
},
|
},
|
||||||
"R": {
|
"R": {
|
||||||
"item": "minecraft:redstone"
|
"item": "minecraft:redstone"
|
||||||
Reference in New Issue
Block a user