1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-20 12:58:38 +03:00

Attempting to fix github CI

This commit is contained in:
Anuken 2019-10-11 09:14:43 -04:00
parent 204332a76a
commit 21b7a0235b
2 changed files with 2 additions and 4 deletions

View File

@ -191,10 +191,6 @@ public abstract class InputHandler implements InputProcessor, GestureListener{
}
public boolean isDrawing(){
return false;
}
public void drawSelected(int x, int y, Block block, Color color){
Draw.color(color);
for(int i = 0; i < 4; i++){

View File

@ -35,6 +35,8 @@ public class ZoneTests{
out.add(dynamicTest(zone.name, () -> {
zone.generator.init(zone.loadout);
logic.reset();
if(world == null) throw new IllegalAccessException();
if(zone.generator == null) throw new ArcRuntimeException("???");
world.loadGenerator(zone.generator);
zone.rules.accept(state.rules);
ObjectSet<Item> resources = new ObjectSet<>();