Don't wrap Exception thrown upon invalid schematic path inside a RuntimeException

Fixes #1506
Dieser Commit ist enthalten in:
dordsor21 2021-12-29 16:55:32 +00:00
Ursprung 52fa44516e
Commit 235d0360da
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -876,8 +876,7 @@ public class UtilityCommands {
}
try {
if (!MainUtil.isInSubDirectory(root, file)) {
throw new RuntimeException(
new StopExecutionException(TextComponent.of("Invalid path")));
throw new StopExecutionException(TextComponent.of("Invalid path"));
}
} catch (IOException ignored) {
}