Final cleanup before the draft phase ends ❤️
This commit is contained in:
@@ -21,16 +21,17 @@ abstract public class BaseConveyor extends Block implements Autotiler{
|
|||||||
|
|
||||||
public BaseConveyor(String name){
|
public BaseConveyor(String name){
|
||||||
super(name);
|
super(name);
|
||||||
|
|
||||||
rotate = true;
|
rotate = true;
|
||||||
update = true;
|
update = true;
|
||||||
layer = Layer.overlay;
|
|
||||||
group = BlockGroup.transportation;
|
|
||||||
hasItems = true;
|
hasItems = true;
|
||||||
itemCapacity = 4;
|
itemCapacity = 4;
|
||||||
|
unloadable = false;
|
||||||
|
layer = Layer.overlay;
|
||||||
|
idleSoundVolume = 0.004f;
|
||||||
conveyorPlacement = true;
|
conveyorPlacement = true;
|
||||||
idleSound = Sounds.conveyor;
|
idleSound = Sounds.conveyor;
|
||||||
idleSoundVolume = 0.004f;
|
group = BlockGroup.transportation;
|
||||||
unloadable = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -78,6 +78,7 @@ public class CraterConveyor extends BaseConveyor{
|
|||||||
// draw crater
|
// draw crater
|
||||||
Draw.rect(crater, Tmp.v1.x, Tmp.v1.y, rotation - 90);
|
Draw.rect(crater, Tmp.v1.x, Tmp.v1.y, rotation - 90);
|
||||||
|
|
||||||
|
// failsafe
|
||||||
if(entity.dominant() == null) return;
|
if(entity.dominant() == null) return;
|
||||||
|
|
||||||
// draw resource
|
// draw resource
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ public enum BlockStat{
|
|||||||
|
|
||||||
input(StatCategory.crafting),
|
input(StatCategory.crafting),
|
||||||
output(StatCategory.crafting),
|
output(StatCategory.crafting),
|
||||||
throughput(StatCategory.crafting),
|
|
||||||
productionTime(StatCategory.crafting),
|
productionTime(StatCategory.crafting),
|
||||||
drillTier(StatCategory.crafting),
|
drillTier(StatCategory.crafting),
|
||||||
drillSpeed(StatCategory.crafting),
|
drillSpeed(StatCategory.crafting),
|
||||||
|
|||||||
Reference in New Issue
Block a user