From a9778e6e687e0258857086823e6b2b3d83aad191 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sun, 10 Feb 2019 10:20:26 -0500 Subject: [PATCH] Bugfixes / Map tweaks --- core/assets/maps/frozenForest.mmap | Bin 203286 -> 203286 bytes .../io/anuke/mindustry/content/TechTree.java | 16 +++++++--------- .../world/blocks/production/Separator.java | 9 --------- 3 files changed, 7 insertions(+), 18 deletions(-) diff --git a/core/assets/maps/frozenForest.mmap b/core/assets/maps/frozenForest.mmap index 590c82cccf6d3e0241679933da72a2bacefbc385..130da8e7a279fb9e1f68a6d9ab13c3244329b3d0 100644 GIT binary patch delta 591 zcmbQXg=g9po(-DO(;enArc6#qP?~-~h>>gh1Sv+=$@i;SC-V+f&=xvbp?DuyX0t&~Il><0$p*JrCr?OZ zoj#A9QF&8-Kgj)j)4>MDr^KY|zNbI9Xr= z+$zb*sp~_h=`!90c?c9zVC~Z{h%pL)^~ZlYJlWuZ$aH^sCeG>lQy4`yHx%+Cnb03A zGP!l0-saVHlbI)Pcq0M!!t_*OMw7{}E-Fqhuw*ix{DEiZp4jbf$ke%&4-tx@`^fWPy){lO6gTrw1HjGH<@n)qbIiar=cX HCbxb7kCEu; delta 465 zcmbQXg=g9po(-DO(-&-EYMXvQh>>gh1Sv+=$@i;SC-Rme4cz7!+Z<_+=o%pi#glOOo9PWHacKY4#V>*V|t*69I;OahZHM6Q~=AVzq4 z0t+MS=KPclrpXF6#giQhWhX!IRhg_%yk%+vqwMtaLX47=HyoCnygzcvBpD6)OS z14c*2=>=yPl_p;(W81vCZZgPS8k09H)SawwSbh3| diff --git a/core/src/io/anuke/mindustry/content/TechTree.java b/core/src/io/anuke/mindustry/content/TechTree.java index 1af9e96450..a656674c91 100644 --- a/core/src/io/anuke/mindustry/content/TechTree.java +++ b/core/src/io/anuke/mindustry/content/TechTree.java @@ -245,15 +245,13 @@ public class TechTree implements ContentList{ node(spiritFactory, () -> { node(daggerFactory, () -> { - node(daggerFactory, () -> { - node(titanFactory, () -> { - node(fortressFactory); - }); - node(wraithFactory, () -> { - node(phantomFactory); - node(ghoulFactory, () -> { - node(revenantFactory); - }); + node(titanFactory, () -> { + node(fortressFactory); + }); + node(wraithFactory, () -> { + node(phantomFactory); + node(ghoulFactory, () -> { + node(revenantFactory); }); }); }); diff --git a/core/src/io/anuke/mindustry/world/blocks/production/Separator.java b/core/src/io/anuke/mindustry/world/blocks/production/Separator.java index 251429e2ea..160a5cb240 100644 --- a/core/src/io/anuke/mindustry/world/blocks/production/Separator.java +++ b/core/src/io/anuke/mindustry/world/blocks/production/Separator.java @@ -32,8 +32,6 @@ public class Separator extends Block{ protected Color color = Color.valueOf("858585"); protected TextureRegion liquidRegion; - protected boolean offloading = false; - public Separator(String name){ super(name); update = true; @@ -113,9 +111,7 @@ public class Separator extends Block{ } if(item != null && entity.items.get(item) < itemCapacity){ - offloading = true; offloadNear(tile, item); - offloading = false; } } @@ -124,11 +120,6 @@ public class Separator extends Block{ } } - @Override - public boolean canDump(Tile tile, Tile to, Item item){ - return offloading || item != consumes.item(); - } - @Override public TileEntity newEntity(){ return new GenericCrafterEntity();