Fixed packing issues
This commit is contained in:
|
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 287 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@@ -1035,7 +1035,7 @@ public class Blocks implements ContentList{
|
|||||||
consumes.power(2f);
|
consumes.power(2f);
|
||||||
}};
|
}};
|
||||||
|
|
||||||
//TODO implement
|
//TODO implement - is this even necessary?
|
||||||
if(false)
|
if(false)
|
||||||
slagCentrifuge = new GenericCrafter("slag-centrifuge"){{
|
slagCentrifuge = new GenericCrafter("slag-centrifuge"){{
|
||||||
requirements(Category.crafting, with(Items.tungsten, 60, Items.graphite, 60, Items.oxide, 40));
|
requirements(Category.crafting, with(Items.tungsten, 60, Items.graphite, 60, Items.oxide, 40));
|
||||||
@@ -1044,6 +1044,7 @@ public class Blocks implements ContentList{
|
|||||||
}};
|
}};
|
||||||
|
|
||||||
//TODO implement
|
//TODO implement
|
||||||
|
//TODO should have a useful turret ammo byproduct?
|
||||||
//original: consumes.items(with(Items.copper, 3, Items.lead, 4, Items.titanium, 2, Items.silicon, 3));
|
//original: consumes.items(with(Items.copper, 3, Items.lead, 4, Items.titanium, 2, Items.silicon, 3));
|
||||||
if(false)
|
if(false)
|
||||||
surgeCrucible = new GenericCrafter("surge-crucible"){{
|
surgeCrucible = new GenericCrafter("surge-crucible"){{
|
||||||
|
|||||||
@@ -73,5 +73,7 @@ public class Liquids implements ContentList{
|
|||||||
}};
|
}};
|
||||||
|
|
||||||
//TODO dicyanoacetylene
|
//TODO dicyanoacetylene
|
||||||
|
|
||||||
|
//TODO molten lead (maybe)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,7 +78,8 @@ public class DrawTurret extends DrawBlock{
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** @return the generated icons to be used for this block. */
|
/** @return the generated icons to be used for this block. */
|
||||||
public TextureRegion[] icons(Turret block){
|
@Override
|
||||||
|
public TextureRegion[] icons(Block block){
|
||||||
return top.found() ? new TextureRegion[]{base, block.region, top} : new TextureRegion[]{base, block.region};
|
return top.found() ? new TextureRegion[]{base, block.region, top} : new TextureRegion[]{base, block.region};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user