mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-11-10 15:05:23 +03:00
Attempting to fix github CI
This commit is contained in:
parent
204332a76a
commit
21b7a0235b
@ -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){
|
public void drawSelected(int x, int y, Block block, Color color){
|
||||||
Draw.color(color);
|
Draw.color(color);
|
||||||
for(int i = 0; i < 4; i++){
|
for(int i = 0; i < 4; i++){
|
||||||
|
@ -35,6 +35,8 @@ public class ZoneTests{
|
|||||||
out.add(dynamicTest(zone.name, () -> {
|
out.add(dynamicTest(zone.name, () -> {
|
||||||
zone.generator.init(zone.loadout);
|
zone.generator.init(zone.loadout);
|
||||||
logic.reset();
|
logic.reset();
|
||||||
|
if(world == null) throw new IllegalAccessException();
|
||||||
|
if(zone.generator == null) throw new ArcRuntimeException("???");
|
||||||
world.loadGenerator(zone.generator);
|
world.loadGenerator(zone.generator);
|
||||||
zone.rules.accept(state.rules);
|
zone.rules.accept(state.rules);
|
||||||
ObjectSet<Item> resources = new ObjectSet<>();
|
ObjectSet<Item> resources = new ObjectSet<>();
|
||||||
|
Loading…
Reference in New Issue
Block a user