Better specification which class is returned
This commit is contained in:
parent
bfc8fac0dd
commit
53b7744695
1 changed files with 23 additions and 4 deletions
|
@ -1,3 +1,21 @@
|
||||||
|
/*
|
||||||
|
* This file is part of Applied Energistics 2.
|
||||||
|
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
|
||||||
|
*
|
||||||
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Applied Energistics 2 is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
||||||
|
*/
|
||||||
|
|
||||||
package appeng.block.crafting;
|
package appeng.block.crafting;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -13,14 +31,15 @@ import appeng.tile.crafting.TileCraftingStorageTile;
|
||||||
|
|
||||||
public class BlockCraftingStorage extends BlockCraftingUnit
|
public class BlockCraftingStorage extends BlockCraftingUnit
|
||||||
{
|
{
|
||||||
|
public BlockCraftingStorage()
|
||||||
public BlockCraftingStorage() {
|
{
|
||||||
super( BlockCraftingStorage.class );
|
super( BlockCraftingStorage.class );
|
||||||
|
|
||||||
setTileEntity( TileCraftingStorageTile.class );
|
setTileEntity( TileCraftingStorageTile.class );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Class getItemBlockClass()
|
public Class<ItemCraftingStorage> getItemBlockClass()
|
||||||
{
|
{
|
||||||
return ItemCraftingStorage.class;
|
return ItemCraftingStorage.class;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +75,7 @@ public class BlockCraftingStorage extends BlockCraftingUnit
|
||||||
case 3:
|
case 3:
|
||||||
return ExtraBlockTextures.BlockCraftingStorage64k.getIcon();
|
return ExtraBlockTextures.BlockCraftingStorage64k.getIcon();
|
||||||
|
|
||||||
case 0 | FLAG_FORMED:
|
case FLAG_FORMED:
|
||||||
return ExtraBlockTextures.BlockCraftingStorage1kFit.getIcon();
|
return ExtraBlockTextures.BlockCraftingStorage1kFit.getIcon();
|
||||||
case 1 | FLAG_FORMED:
|
case 1 | FLAG_FORMED:
|
||||||
return ExtraBlockTextures.BlockCraftingStorage4kFit.getIcon();
|
return ExtraBlockTextures.BlockCraftingStorage4kFit.getIcon();
|
||||||
|
|
Loading…
Reference in a new issue