mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 03:05:28 +01:00
Handle null container file for 'minecraft' on 1.13.x+
This commit is contained in:
parent
27d767ac35
commit
bfbcde99f3
@ -1598,7 +1598,7 @@ public class TexturePack {
|
||||
// Check mods to see if texture files defined there
|
||||
for (String modid : core.getServer().getModList()) {
|
||||
File f = core.getServer().getModContainerFile(modid); // Get mod file
|
||||
if (f.isFile()) {
|
||||
if ((f != null) && f.isFile()) {
|
||||
ZipFile zf = null;
|
||||
in = null;
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user