Another small fix

This commit is contained in:
Raoul Van den Berge
2016-07-19 12:51:44 +02:00
parent 36f117c0d7
commit 80e4a6500b
2 changed files with 4 additions and 2 deletions

View File

@@ -34,9 +34,11 @@ public final class RefinedStorage {
public final SimpleNetworkWrapper network = NetworkRegistry.INSTANCE.newSimpleChannel(ID); public final SimpleNetworkWrapper network = NetworkRegistry.INSTANCE.newSimpleChannel(ID);
public final CreativeTabs tab = new CreativeTabs(ID) { public final CreativeTabs tab = new CreativeTabs(ID) {
private ItemStack icon = new ItemStack(RefinedStorageItems.STORAGE_HOUSING);
@Override @Override
public ItemStack getIconItemStack() { public ItemStack getIconItemStack() {
return new ItemStack(RefinedStorageItems.STORAGE_HOUSING); return icon;
} }
@Override @Override

View File

@@ -3,7 +3,7 @@ package refinedstorage.api.storage;
import java.util.List; import java.util.List;
/** /**
* Implement this interface on the tile that has a {@link refinedstorage.api.RefinedStorageCapabilities#NETWORK_NODE_CAPABILITY} capability. * Represents a tile that provides storage to the network. Implement this on a tile that implements {@link refinedstorage.api.network.INetworkNode}.
*/ */
public interface IStorageProvider { public interface IStorageProvider {
/** /**