reverting changes to library
This commit is contained in:
@@ -1,115 +1,117 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
jcenter()
|
||||||
maven { url = "http://files.minecraftforge.net/maven" }
|
maven {
|
||||||
|
name = "forge"
|
||||||
|
url = "http://files.minecraftforge.net/maven"
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name = "sonatype"
|
||||||
|
url = "https://oss.sonatype.org/content/repositories/snapshots/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
maven {
|
||||||
maven {
|
name = "jei"
|
||||||
|
url "http://dvs1.progwml6.com/files/maven"
|
||||||
name = "primal"
|
|
||||||
|
|
||||||
url "http://maven.nmd.so"
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
maven {
|
||||||
|
name = "mobius"
|
||||||
|
url "http://mobiusstrip.eu/maven"
|
||||||
|
}
|
||||||
|
|
||||||
|
//maven {
|
||||||
|
// name = "primal"
|
||||||
|
// url "http://maven.nmd.so"
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||||
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
apply plugin: 'java'
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly.
|
|
||||||
compileJava {
|
compileJava {
|
||||||
sourceCompatibility = targetCompatibility = "1.8"
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "${mod_group}"
|
group = "${mod_group}"
|
||||||
|
|
||||||
version = "${mod_version}"
|
version = "${mod_version}"
|
||||||
|
|
||||||
archivesBaseName = "${mod_name}"
|
archivesBaseName = "${mod_name}"
|
||||||
|
|
||||||
|
idea { module { inheritOutputDirs = true } }
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "1.11-13.19.1.2199"
|
version = "${mc_version}" + "-" + "${forge_version}"
|
||||||
runDir = "run"
|
runDir = "run"
|
||||||
|
|
||||||
// the mappings can be changed at any time, and must be in the following format.
|
mappings = "${mcp_mappings}"
|
||||||
// snapshot_YYYYMMDD snapshot are built nightly.
|
|
||||||
// stable_# stables are built at the discretion of the MCP team.
|
// JEI
|
||||||
// Use non-default mappings at your own risk. they may not always work.
|
//useDepAts = true
|
||||||
// simply re-run your setup task after changing the mappings to update your workspace.
|
|
||||||
mappings = "snapshot_20161220"
|
// Replace
|
||||||
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
|
replace "@VERSION@", project.mod_version
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// you may put jars on which you depend on in ./libs
|
// you may put jars on which you depend on in ./libs
|
||||||
// or you may define them like so..
|
// or you may define them like so..
|
||||||
//compile "some.group:artifact:version:classifier"
|
//compile "some.group:artifact:version:classifier"
|
||||||
//compile "some.group:artifact:version"
|
//compile "some.group:artifact:version"
|
||||||
|
|
||||||
// real examples
|
|
||||||
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
|
|
||||||
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
|
|
||||||
|
|
||||||
// the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime.
|
// real examples
|
||||||
//provided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
|
||||||
|
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
|
||||||
|
|
||||||
// the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided,
|
// the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime.
|
||||||
// except that these dependencies get remapped to your current MCP mappings
|
//provided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
||||||
//deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
|
||||||
//deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
|
||||||
|
|
||||||
// for more info...
|
// the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided,
|
||||||
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
// except that these dependencies get remapped to your current MCP mappings
|
||||||
// http://www.gradle.org/docs/current/userguide/dependency_management.html
|
//deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
||||||
|
//deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
|
||||||
|
|
||||||
deobfCompile "nmd.primal.core:PrimalCore:${primal_version}:dev"
|
// for more info...
|
||||||
|
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
||||||
|
// http://www.gradle.org/docs/current/userguide/ddependency_management.html
|
||||||
|
|
||||||
runtime "nmd.primal.core:PrimalCore:${primal_version}"
|
// JEI
|
||||||
|
// https://github.com/mezz/JustEnoughItems
|
||||||
|
// http://minecraft.curseforge.com/projects/just-enough-items-jei/files
|
||||||
|
// <MINECRAFT-VERSION> and <JEI-VERSION> can be found on CurseForge, check the file name of the version you want.
|
||||||
|
//
|
||||||
|
// compile against the JEI API
|
||||||
|
//deobfCompile "mezz.jei:jei_${mc_version}:${jei_version}:api"
|
||||||
|
//runtime "mezz.jei:jei_${mc_version}:${jei_version}"
|
||||||
|
|
||||||
|
//deobfCompile "nmd.primal.core:PrimalCore:${primal_version}:dev"
|
||||||
|
//runtime "nmd.primal.core:PrimalCore:${primal_version}"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
processResources {
|
processResources {
|
||||||
|
// this will ensure that this task is redone when the versions change.
|
||||||
|
inputs.property "version", "${mod_version}"
|
||||||
|
inputs.property "mcversion", "${mc_version}"
|
||||||
|
|
||||||
// this will ensure that this task is redone when the versions change.
|
// replace stuff in mcmod.info, nothing else
|
||||||
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
|
include 'mcmod.info'
|
||||||
|
|
||||||
inputs.property "version", "${mod_version}"
|
// replace version and mcversion
|
||||||
|
expand 'version':"${mod_version}", 'mcversion':"${mc_version}"
|
||||||
|
}
|
||||||
|
|
||||||
inputs.property "mcversion", "${mc_version}"
|
// copy everything else, thats not the mcmod.info
|
||||||
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
|
exclude 'mcmod.info'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// end //
|
||||||
|
|
||||||
// replace stuff in mcmod.info, nothing else
|
|
||||||
|
|
||||||
from(sourceSets.main.resources.srcDirs) {
|
|
||||||
|
|
||||||
include 'mcmod.info'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// replace version and mcversion
|
|
||||||
|
|
||||||
expand 'version':"${mod_version}", 'mcversion':"${mc_version}"
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// copy everything else, thats not the mcmod.info
|
|
||||||
|
|
||||||
from(sourceSets.main.resources.srcDirs) {
|
|
||||||
|
|
||||||
exclude 'mcmod.info'
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#Splash screen properties
|
#Splash screen properties
|
||||||
#Fri Dec 30 16:33:13 EST 2016
|
#Sun Jan 01 01:23:04 EST 2017
|
||||||
logoTexture=textures/gui/title/mojang.png
|
logoTexture=textures/gui/title/mojang.png
|
||||||
background=0xFFFFFF
|
background=0xFFFFFF
|
||||||
memoryGood=0x78CB34
|
memoryGood=0x78CB34
|
||||||
|
|||||||
@@ -6,8 +6,11 @@ org.gradle.jvmargs=-Xmx3G
|
|||||||
mod_group=nmd.primal.forgecraft
|
mod_group=nmd.primal.forgecraft
|
||||||
mod_name=ForgeCraft
|
mod_name=ForgeCraft
|
||||||
mod_version=1.0.1
|
mod_version=1.0.1
|
||||||
forge_version=12.18.3.2185
|
forge_version=13.19.1.2189
|
||||||
mcp_mappings=snapshot_20161111
|
mcp_mappings=snapshot_20161130
|
||||||
mc_version=1.11
|
mc_version=1.11
|
||||||
|
|
||||||
primal_version=0.2.11
|
primal_version=0.2.11
|
||||||
|
jei_version=4.0+
|
||||||
|
waila_version=1.7.0-B3
|
||||||
|
apple_version=2.1+
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -538,3 +538,15 @@
|
|||||||
[16:33:03] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
[16:33:03] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
[16:33:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
[16:33:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
[16:33:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
[16:33:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[00:27:59] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[00:27:59] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/mminaie/.gradle/caches/minecraft/assets, --assetIndex, 1.11, --accessToken{REDACTED}, --version, 1.11, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
|
||||||
|
[00:27:59] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[00:27:59] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[00:27:59] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[00:27:59] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[01:22:52] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[01:22:52] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/mminaie/.gradle/caches/minecraft/assets, --assetIndex, 1.11, --accessToken{REDACTED}, --version, 1.11, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
|
||||||
|
[01:22:52] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[01:22:52] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[01:22:52] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[01:22:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
[16:33:10] [Client thread/INFO]: Setting user: Player413
|
[01:22:59] [Client thread/INFO]: Setting user: Player591
|
||||||
[16:33:13] [Client thread/WARN]: Skipping bad option: lastServer:
|
[01:23:03] [Client thread/WARN]: Skipping bad option: lastServer:
|
||||||
[16:33:13] [Client thread/INFO]: LWJGL Version: 2.9.2
|
[01:23:03] [Client thread/INFO]: LWJGL Version: 2.9.2
|
||||||
[16:33:16] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft
|
[01:23:06] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft, FMLFileResourcePack:Just Enough Items, FMLFileResourcePack:PrimalCore
|
||||||
[16:33:17] [Client thread/WARN]: Invalid sounds.json
|
[01:23:09] [Client thread/WARN]: Invalid sounds.json
|
||||||
java.lang.NullPointerException
|
java.lang.NullPointerException
|
||||||
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:79) [SoundHandler.class:?]
|
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:79) [SoundHandler.class:?]
|
||||||
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?]
|
at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:122) [SimpleReloadableResourceManager.class:?]
|
||||||
@@ -26,188 +26,30 @@ java.lang.NullPointerException
|
|||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
||||||
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?]
|
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?]
|
||||||
[16:33:17] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/sheep/attack1.ogg does not exist, cannot add it to event primal:mob.sheep.hurt
|
||||||
[16:33:17] [Thread-6/INFO]: Initializing LWJGL OpenAL
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/wraith/wraith_say_1.ogg does not exist, cannot add it to event primal:mob.wraith.say
|
||||||
[16:33:17] [Thread-6/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/wraith/wraith_long_echo.ogg does not exist, cannot add it to event primal:mob.wraith.summon
|
||||||
[16:33:18] [Thread-6/INFO]: OpenAL initialized.
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/wraith/wraith_death.ogg does not exist, cannot add it to event primal:mob.wraith.death
|
||||||
[16:33:18] [Sound Library Loader/INFO]: Sound engine started
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/shadow/say1.ogg does not exist, cannot add it to event primal:mob.shadow.say
|
||||||
[16:33:19] [Client thread/INFO]: Created: 16x16 textures-atlas
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/shadow/say2.ogg does not exist, cannot add it to event primal:mob.shadow.say
|
||||||
[16:33:21] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/shadow/scream1.ogg does not exist, cannot add it to event primal:mob.shadow.scream
|
||||||
[16:33:22] [Client thread/WARN]: Invalid sounds.json
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/shadow/scream2.ogg does not exist, cannot add it to event primal:mob.shadow.scream
|
||||||
java.lang.NullPointerException
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/shadow/scream3.ogg does not exist, cannot add it to event primal:mob.shadow.scream
|
||||||
at net.minecraft.client.audio.SoundHandler.onResourceManagerReload(SoundHandler.java:79) [SoundHandler.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/shadow/death.ogg does not exist, cannot add it to event primal:mob.shadow.death
|
||||||
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/dwarf_say_1.ogg does not exist, cannot add it to event primal:mob.dwarf.say
|
||||||
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [SimpleReloadableResourceManager.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/dwarf_say_2.ogg does not exist, cannot add it to event primal:mob.dwarf.say
|
||||||
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:798) [Minecraft.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/dwarf_call.ogg does not exist, cannot add it to event primal:mob.dwarf.call
|
||||||
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:357) [FMLClientHandler.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/hurt1.ogg does not exist, cannot add it to event primal:mob.dwarf.hurt
|
||||||
at net.minecraft.client.Minecraft.init(Minecraft.java:560) [Minecraft.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/hurt2.ogg does not exist, cannot add it to event primal:mob.dwarf.hurt
|
||||||
at net.minecraft.client.Minecraft.run(Minecraft.java:385) [Minecraft.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/hurt3.ogg does not exist, cannot add it to event primal:mob.dwarf.hurt
|
||||||
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
|
[01:23:09] [Client thread/WARN]: File minecraft:sounds/mob/dwarf/dwarf_death.ogg does not exist, cannot add it to event primal:mob.dwarf.death
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
|
[01:23:09] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
|
[01:23:09] [Thread-6/INFO]: Initializing LWJGL OpenAL
|
||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
[01:23:09] [Thread-6/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
[01:23:09] [Thread-6/INFO]: OpenAL initialized.
|
||||||
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
|
[01:23:09] [Sound Library Loader/INFO]: Sound engine started
|
||||||
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
|
[01:23:11] [Client thread/INFO]: Created: 16x16 textures-atlas
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
|
[01:23:14] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
|
[01:24:31] [Client thread/INFO]: Stopping!
|
||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
[01:24:31] [Client thread/INFO]: SoundSystem shutting down...
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
[01:24:31] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
|
||||||
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
|
|
||||||
at GradleStart.main(GradleStart.java:26) [start/:?]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
|
||||||
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?]
|
|
||||||
[16:33:22] [Client thread/INFO]: SoundSystem shutting down...
|
|
||||||
[16:33:22] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
|
|
||||||
[16:33:22] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
|
||||||
[16:33:22] [Thread-8/INFO]: Initializing LWJGL OpenAL
|
|
||||||
[16:33:22] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
|
||||||
[16:33:22] [Thread-8/INFO]: OpenAL initialized.
|
|
||||||
[16:33:22] [Sound Library Loader/INFO]: Sound engine started
|
|
||||||
[16:33:23] [Client thread/INFO]: Created: 512x512 textures-atlas
|
|
||||||
[16:33:24] [Client thread/WARN]: Skipping bad option: lastServer:
|
|
||||||
[16:33:30] [Server thread/INFO]: Starting integrated minecraft server version 1.11
|
|
||||||
[16:33:30] [Server thread/INFO]: Generating keypair
|
|
||||||
[16:33:30] [Server thread/INFO]: Preparing start region for level 0
|
|
||||||
[16:33:30] [Server thread/INFO]: Changing view distance to 12, from 10
|
|
||||||
[16:33:31] [Client thread/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@74739d27[id=cd68c5ef-6a2a-334d-afe7-65c24468cb5c,name=Player413,properties={},legacy=false]
|
|
||||||
com.mojang.authlib.exceptions.AuthenticationUnavailableException: Cannot contact authentication server
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:85) ~[YggdrasilAuthenticationService.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:173) [YggdrasilMinecraftSessionService.class:?]
|
|
||||||
at net.minecraft.client.Minecraft.launchIntegratedServer(Minecraft.java:2443) [Minecraft.class:?]
|
|
||||||
at net.minecraftforge.fml.client.FMLClientHandler.tryLoadExistingWorld(FMLClientHandler.java:748) [FMLClientHandler.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiListWorldSelectionEntry.loadWorld(GuiListWorldSelectionEntry.java:253) [GuiListWorldSelectionEntry.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiListWorldSelectionEntry.joinWorld(GuiListWorldSelectionEntry.java:203) [GuiListWorldSelectionEntry.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiListWorldSelectionEntry.mousePressed(GuiListWorldSelectionEntry.java:172) [GuiListWorldSelectionEntry.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiListExtended.mouseClicked(GuiListExtended.java:57) [GuiListExtended.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiWorldSelection.mouseClicked(GuiWorldSelection.java:134) [GuiWorldSelection.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:611) [GuiScreen.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiWorldSelection.handleMouseInput(GuiWorldSelection.java:49) [GuiWorldSelection.class:?]
|
|
||||||
at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:576) [GuiScreen.class:?]
|
|
||||||
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1790) [Minecraft.class:?]
|
|
||||||
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1117) [Minecraft.class:?]
|
|
||||||
at net.minecraft.client.Minecraft.run(Minecraft.java:405) [Minecraft.class:?]
|
|
||||||
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
|
||||||
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
|
|
||||||
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
|
||||||
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
|
|
||||||
at GradleStart.main(GradleStart.java:26) [start/:?]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_111]
|
|
||||||
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_111]
|
|
||||||
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_111]
|
|
||||||
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:?]
|
|
||||||
Caused by: java.net.UnknownHostException: sessionserver.mojang.com
|
|
||||||
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184) ~[?:1.8.0_111]
|
|
||||||
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:1.8.0_111]
|
|
||||||
at java.net.Socket.connect(Socket.java:589) ~[?:1.8.0_111]
|
|
||||||
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668) ~[?:1.8.0_111]
|
|
||||||
at sun.net.NetworkClient.doConnect(NetworkClient.java:175) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1181) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1022) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1020) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1019) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1546) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1466) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1464) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1463) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_111]
|
|
||||||
at com.mojang.authlib.HttpAuthenticationService.performGetRequest(HttpAuthenticationService.java:130) ~[HttpAuthenticationService.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:66) ~[YggdrasilAuthenticationService.class:?]
|
|
||||||
... 33 more
|
|
||||||
[16:33:31] [Server thread/INFO]: Player413[local:E:7dbecf95] logged in with entity id 90 at (1463.5971181083178, 3.0, -829.7216053817076)
|
|
||||||
[16:33:31] [Server thread/INFO]: Player413 joined the game
|
|
||||||
[16:33:32] [Server thread/INFO]: Saving and pausing game...
|
|
||||||
[16:33:32] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
|
||||||
[16:33:32] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
|
||||||
[16:33:32] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
|
||||||
[16:33:32] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@2ecf9cea[id=cd68c5ef-6a2a-334d-afe7-65c24468cb5c,name=Player413,properties={},legacy=false]
|
|
||||||
com.mojang.authlib.exceptions.AuthenticationUnavailableException: Cannot contact authentication server
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:85) ~[YggdrasilAuthenticationService.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
|
|
||||||
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
|
|
||||||
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?]
|
|
||||||
at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3054) [Minecraft.class:?]
|
|
||||||
at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?]
|
|
||||||
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_111]
|
|
||||||
at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_111]
|
|
||||||
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?:1.8.0_111]
|
|
||||||
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_111]
|
|
||||||
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_111]
|
|
||||||
Caused by: java.net.UnknownHostException: sessionserver.mojang.com
|
|
||||||
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184) ~[?:1.8.0_111]
|
|
||||||
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:1.8.0_111]
|
|
||||||
at java.net.Socket.connect(Socket.java:589) ~[?:1.8.0_111]
|
|
||||||
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668) ~[?:1.8.0_111]
|
|
||||||
at sun.net.NetworkClient.doConnect(NetworkClient.java:175) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1181) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1022) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1020) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1019) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1546) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1466) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1464) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111]
|
|
||||||
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1463) ~[?:1.8.0_111]
|
|
||||||
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) ~[?:1.8.0_111]
|
|
||||||
at com.mojang.authlib.HttpAuthenticationService.performGetRequest(HttpAuthenticationService.java:130) ~[HttpAuthenticationService.class:?]
|
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:66) ~[YggdrasilAuthenticationService.class:?]
|
|
||||||
... 19 more
|
|
||||||
[16:33:40] [Server thread/INFO]: Saving and pausing game...
|
|
||||||
[16:33:40] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
|
||||||
[16:33:40] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
|
||||||
[16:33:40] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
|
||||||
[16:33:41] [Server thread/INFO]: Stopping server
|
|
||||||
[16:33:41] [Server thread/INFO]: Saving players
|
|
||||||
[16:33:41] [Server thread/INFO]: Player413 lost connection: TextComponent{text='Disconnected', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}
|
|
||||||
[16:33:41] [Server thread/INFO]: Player413 left the game
|
|
||||||
[16:33:41] [Server thread/INFO]: Stopping singleplayer server as player logged out
|
|
||||||
[16:33:41] [Server thread/INFO]: Saving worlds
|
|
||||||
[16:33:41] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
|
||||||
[16:33:41] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
|
||||||
[16:33:41] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
|
||||||
[16:33:43] [Client thread/INFO]: Stopping!
|
|
||||||
[16:33:43] [Client thread/INFO]: SoundSystem shutting down...
|
|
||||||
[16:33:43] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
|
|
||||||
|
|||||||
Reference in New Issue
Block a user