New WIP achievement definitions

This commit is contained in:
Anuken
2022-10-09 17:47:12 -04:00
parent dfdb4c1c1f
commit 4201106843
20 changed files with 419 additions and 26 deletions

View File

@@ -292,6 +292,10 @@ public class Schematics implements Loadable{
return defaultLoadouts.get(block);
}
public boolean isDefaultLoadout(Schematic schem){
return defaultLoadouts.containsValue(schem, true);
}
/** Checks a schematic for deployment validity and adds it to the cache. */
private void checkLoadout(Schematic s, boolean customSchem){
Stile core = s.tiles.find(t -> t.block instanceof CoreBlock);