Retexturing, changed mega repair turret size

This commit is contained in:
Anuken
2018-03-04 16:29:54 -05:00
parent 992fcc73b8
commit 099d88ba7b
19 changed files with 297 additions and 298 deletions

View File

@@ -71,7 +71,7 @@ public class Recipes {
new Recipe(power, ProductionBlocks.combustiongenerator, stack(Item.iron, 30), stack(Item.stone, 20)),
new Recipe(power, ProductionBlocks.rtgenerator, stack(Item.titanium, 20), stack(Item.steel, 20)),
new Recipe(power, ProductionBlocks.nuclearReactor, stack(Item.titanium, 40), stack(Item.dirium, 40), stack(Item.steel, 50)),
new Recipe(power, DistributionBlocks.powerbooster, stack(Item.steel, 8), stack(Item.iron, 8)),
//new Recipe(power, DistributionBlocks.powerbooster, stack(Item.steel, 8), stack(Item.iron, 8)),
new Recipe(power, DistributionBlocks.powerlaser, stack(Item.steel, 3), stack(Item.iron, 3)),
new Recipe(power, DistributionBlocks.powerlasercorner, stack(Item.steel, 4), stack(Item.iron, 4)),
new Recipe(power, DistributionBlocks.powerlaserrouter, stack(Item.steel, 5), stack(Item.iron, 5)),

View File

@@ -62,6 +62,7 @@ public class DefenseBlocks{
reload = 12f;
health = 90;
powerUsed = 0.13f;
width = height = 2;
}
},

View File

@@ -4,7 +4,6 @@ import io.anuke.mindustry.resource.Liquid;
import io.anuke.mindustry.world.Tile;
import io.anuke.mindustry.world.blocks.types.LiquidAcceptor;
import io.anuke.ucore.graphics.Draw;
import io.anuke.ucore.util.Log;
public class TunnelConduit extends Conduit {
protected int maxdist = 3;
@@ -25,7 +24,6 @@ public class TunnelConduit extends Conduit {
@Override
public void handleLiquid(Tile tile, Tile source, Liquid liquid, float amount) {
Log.info("handle");
Tile tunnel = getDestTunnel(tile);
if (tunnel == null) return;
Tile to = tunnel.getNearby(tunnel.getRotation());