Disable manual downloading until its useful

This commit is contained in:
modmuss50 2016-05-24 08:09:18 +01:00
parent 106c24c29c
commit 6156591b0e
3 changed files with 11 additions and 11 deletions

View file

@ -51,7 +51,7 @@ configurations {
}
version = "1.2.1"
version = "1.2.2"
def ENV = System.getenv()
if (ENV.BUILD_NUMBER) {

View file

@ -34,8 +34,8 @@ public class GuiManual extends GuiScreen
{
this.xSize = 200;
this.ySize = 180;
// root = createRoot();
root = ManualLoader.getPages();
root = createRoot();
//root = ManualLoader.getPages();
}
protected PageCollection createRoot()

View file

@ -62,14 +62,14 @@ public class ClientProxy extends CommonProxy
ManualLoader loader = new ManualLoader(new File(event.getModConfigurationDirectory(), "techreborn"));
new Thread(() ->
{
try {
loader.load();
} catch (IOException e) {
e.printStackTrace();
}
}).start();
// new Thread(() ->
// {
// try {
// loader.load();
// } catch (IOException e) {
// e.printStackTrace();
// }
// }).start();
for(Object object : RebornCore.jsonDestroyer.objectsToDestroy) {
if (object instanceof BlockMachineBase) {