This commit is contained in:
Anuken
2020-05-18 11:10:56 -04:00
parent 3784251108
commit dcbe4072dc
3 changed files with 5 additions and 3 deletions

View File

@@ -345,7 +345,7 @@ public class TechTree implements ContentList{
return new TechNode(content, requirements, children);
}
private static TechNode node(Block block){
private static TechNode node(UnlockableContent block){
return node(block, () -> {});
}

View File

@@ -17,11 +17,13 @@ public class FileMapGenerator implements WorldGenerator{
public final Map map;
public FileMapGenerator(String mapName){
this.map = maps.loadInternalMap(mapName);
this.map = maps != null ? maps.loadInternalMap(mapName) : null;
}
@Override
public void generate(Tiles tiles){
if(map == null) throw new RuntimeException("Generator has null map, cannot be used.");
SaveIO.load(map.file);
world.beginMapLoad();