1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-10 10:23:00 +00:00

Remove a couple of over-eager error logs

This commit is contained in:
SquidDev
2019-04-16 10:08:12 +01:00
parent 5a8a111857
commit 9e9f199e55
3 changed files with 8 additions and 6 deletions

View File

@@ -449,6 +449,9 @@ public class ComputerCraft
if( subResource.exists() ) mounts.add( new FileMount( subResource, 0 ) );
}
}
catch( FileNotFoundException ignored )
{
}
catch( IOException | RuntimeException e )
{
ComputerCraft.log.error( "Could not load resource pack '" + resourcePackName + "'", e );