Handle textures loading from other mods
This commit is contained in:
parent
07e7d53a93
commit
17174c177c
1 changed files with 6 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ package org.dynmap.bukkit;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.net.InetSocketAddress;
|
||||
|
|
@ -580,6 +581,11 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
|
|||
}
|
||||
return map;
|
||||
}
|
||||
|
||||
@Override
|
||||
public InputStream openResource(String modid, String rname) {
|
||||
return null; // No mods supported
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Player access abstraction class
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue