Block tweaks

This commit is contained in:
Anuken 2022-05-05 10:46:58 -04:00
parent 6a026f7286
commit 05d5a160fe
4 changed files with 7 additions and 1 deletions

View File

@ -3885,7 +3885,7 @@ public class Blocks{
}};
titan = new ItemTurret("titan"){{
requirements(Category.turret, with(Items.thorium, 300, Items.tungsten, 250, Items.silicon, 300, Items.beryllium, 400));
requirements(Category.turret, with(Items.thorium, 300, Items.tungsten, 250, Items.silicon, 300, Items.thorium, 400));
ammo(
//TODO 1 more ammo type, decide on base type
@ -4048,6 +4048,8 @@ public class Blocks{
limitRange(-5f);
}};
//TODO 3+ more turrets.
//endregion
//region units
@ -4661,6 +4663,7 @@ public class Blocks{
worldProcessor = new LogicBlock("world-processor"){{
requirements(Category.logic, BuildVisibility.editorOnly, with());
canOverdrive = false;
targetable = false;
instructionsPerTick = 8;
forceDark = true;

View File

@ -30,6 +30,7 @@ public class CanvasBlock extends Block{
configurable = true;
destructible = true;
canOverdrive = false;
solid = true;
config(byte[].class, (CanvasBuild build, byte[] bytes) -> {

View File

@ -38,6 +38,7 @@ public class LogicDisplay extends Block{
super(name);
update = true;
solid = true;
canOverdrive = false;
group = BlockGroup.logic;
drawDisabled = false;
envEnabled = Env.any;

View File

@ -17,6 +17,7 @@ public class MemoryBlock extends Block{
group = BlockGroup.logic;
drawDisabled = false;
envEnabled = Env.any;
canOverdrive = false;
}
@Override