Shift models and texture data into 'renderdata' directory

This commit is contained in:
Mike Primm 2011-07-23 09:30:22 -05:00
parent 1c6ececd62
commit 9992aa7628
5 changed files with 7 additions and 18 deletions

View file

@ -557,8 +557,8 @@ public class TexturePack {
/* Initialize map with blank map for all entries */
HDTextureMap.initializeTable();
/* Load block models */
loadTextureFile(new File(datadir, "texture.txt"));
File custom = new File(datadir, "custom-texture.txt");
loadTextureFile(new File(datadir, "renderdata/texture.txt"));
File custom = new File(datadir, "renderdata/custom-texture.txt");
if(custom.canRead()) {
loadTextureFile(custom);
}