Final cleanup before the draft phase ends ❤️

This commit is contained in:
Patrick 'Quezler' Mounier
2020-01-06 18:09:19 +01:00
parent 9b55eeaa38
commit 6e8ba927dd
3 changed files with 6 additions and 5 deletions

View File

@@ -21,16 +21,17 @@ abstract public class BaseConveyor extends Block implements Autotiler{
public BaseConveyor(String name){
super(name);
rotate = true;
update = true;
layer = Layer.overlay;
group = BlockGroup.transportation;
hasItems = true;
itemCapacity = 4;
unloadable = false;
layer = Layer.overlay;
idleSoundVolume = 0.004f;
conveyorPlacement = true;
idleSound = Sounds.conveyor;
idleSoundVolume = 0.004f;
unloadable = false;
group = BlockGroup.transportation;
}
@Override

View File

@@ -78,6 +78,7 @@ public class CraterConveyor extends BaseConveyor{
// draw crater
Draw.rect(crater, Tmp.v1.x, Tmp.v1.y, rotation - 90);
// failsafe
if(entity.dominant() == null) return;
// draw resource

View File

@@ -26,7 +26,6 @@ public enum BlockStat{
input(StatCategory.crafting),
output(StatCategory.crafting),
throughput(StatCategory.crafting),
productionTime(StatCategory.crafting),
drillTier(StatCategory.crafting),
drillSpeed(StatCategory.crafting),