Skip to content

Commit

Permalink
update supported litematic version
Browse files Browse the repository at this point in the history
  • Loading branch information
rfresh2 committed Jul 19, 2024
1 parent 74f46cd commit e66fdea
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ public IStaticSchematic parse(InputStream input) throws IOException {
case 4: //1.12
case 5: //1.13-1.17
throw new UnsupportedOperationException("This litematic Version is too old.");
case 6: //1.18+
case 6: //1.18-1.20
throw new UnsupportedOperationException("This litematic Version is too old.");
case 7: //1.21+
return new LitematicaSchematic(nbt, false);
default:
throw new UnsupportedOperationException("Unsuported Version of a Litematica Schematic");
Expand Down

0 comments on commit e66fdea

Please sign in to comment.