Nuke launch format string
This commit is contained in:
@@ -44,6 +44,7 @@ public class Conveyor extends Block implements Autotiler{
|
||||
itemCapacity = capacity;
|
||||
priority = TargetPriority.transport;
|
||||
conveyorPlacement = true;
|
||||
underBullets = true;
|
||||
|
||||
ambientSound = Sounds.conveyor;
|
||||
ambientSoundVolume = 0.0022f;
|
||||
|
||||
@@ -44,6 +44,7 @@ public class ItemBridge extends Block{
|
||||
super(name);
|
||||
update = true;
|
||||
solid = true;
|
||||
underBullets = true;
|
||||
hasPower = true;
|
||||
itemCapacity = 10;
|
||||
configurable = true;
|
||||
|
||||
@@ -16,7 +16,8 @@ public class Junction extends Block{
|
||||
public Junction(String name){
|
||||
super(name);
|
||||
update = true;
|
||||
solid = true;
|
||||
solid = false;
|
||||
underBullets = true;
|
||||
group = BlockGroup.transportation;
|
||||
unloadable = false;
|
||||
noUpdateDisabled = true;
|
||||
|
||||
@@ -15,7 +15,7 @@ public class OverflowGate extends Block{
|
||||
public OverflowGate(String name){
|
||||
super(name);
|
||||
hasItems = true;
|
||||
solid = true;
|
||||
underBullets = true;
|
||||
update = false;
|
||||
destructible = true;
|
||||
group = BlockGroup.transportation;
|
||||
|
||||
@@ -15,7 +15,7 @@ public class Router extends Block{
|
||||
public Router(String name){
|
||||
super(name);
|
||||
solid = true;
|
||||
update = true;
|
||||
underBullets = true;
|
||||
hasItems = true;
|
||||
itemCapacity = 1;
|
||||
group = BlockGroup.transportation;
|
||||
|
||||
@@ -21,7 +21,7 @@ public class Sorter extends Block{
|
||||
super(name);
|
||||
update = false;
|
||||
destructible = true;
|
||||
solid = true;
|
||||
underBullets = true;
|
||||
instantTransfer = true;
|
||||
group = BlockGroup.transportation;
|
||||
configurable = true;
|
||||
|
||||
@@ -52,6 +52,7 @@ public class StackConveyor extends Block implements Autotiler{
|
||||
itemCapacity = 10;
|
||||
conveyorPlacement = true;
|
||||
highUnloadPriority = true;
|
||||
underBullets = true;
|
||||
priority = TargetPriority.transport;
|
||||
|
||||
ambientSound = Sounds.conveyor;
|
||||
|
||||
@@ -46,6 +46,7 @@ public class Conduit extends LiquidBlock implements Autotiler{
|
||||
rotate = true;
|
||||
solid = false;
|
||||
floating = true;
|
||||
underBullets = true;
|
||||
conveyorPlacement = true;
|
||||
noUpdateDisabled = true;
|
||||
canOverdrive = false;
|
||||
|
||||
@@ -12,6 +12,8 @@ public class LiquidRouter extends LiquidBlock{
|
||||
public LiquidRouter(String name){
|
||||
super(name);
|
||||
|
||||
underBullets = true;
|
||||
solid = false;
|
||||
noUpdateDisabled = true;
|
||||
canOverdrive = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user