updating build.gradle
This commit is contained in:
43
.gitignore
vendored
Normal file
43
.gitignore
vendored
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
README.txt
|
||||||
|
1.11/saves*
|
||||||
|
1.11/MinecraftForge-*
|
||||||
|
1.11/Paulscode*
|
||||||
|
1.11/logs*
|
||||||
|
forge-*-changelog.txt
|
||||||
|
*-fml.txt
|
||||||
|
.gradle
|
||||||
|
build/
|
||||||
|
run/
|
||||||
|
out/
|
||||||
|
tmp/
|
||||||
|
bin/
|
||||||
|
crash-reports
|
||||||
|
config/
|
||||||
|
saves/
|
||||||
|
logs
|
||||||
|
usercache.json
|
||||||
|
usernamecache.json
|
||||||
|
options.txt
|
||||||
|
|
||||||
|
# eclipse
|
||||||
|
bin
|
||||||
|
*.launch
|
||||||
|
.settings
|
||||||
|
.metadata
|
||||||
|
.classpath
|
||||||
|
.project
|
||||||
|
|
||||||
|
# idea
|
||||||
|
out
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# gradle
|
||||||
|
build
|
||||||
|
.gradle
|
||||||
|
|
||||||
|
# other
|
||||||
|
eclipse
|
||||||
|
run
|
||||||
19
1.11/.gitignore
vendored
19
1.11/.gitignore
vendored
@@ -1,3 +1,22 @@
|
|||||||
|
README.txt
|
||||||
|
MinecraftForge-*
|
||||||
|
Paulscode*
|
||||||
|
forge-*-changelog.txt
|
||||||
|
*-fml.txt
|
||||||
|
.gradle
|
||||||
|
build/
|
||||||
|
run/
|
||||||
|
out/
|
||||||
|
tmp/
|
||||||
|
bin/
|
||||||
|
crash-reports
|
||||||
|
config/
|
||||||
|
saves/
|
||||||
|
logs
|
||||||
|
usercache.json
|
||||||
|
usernamecache.json
|
||||||
|
options.txt
|
||||||
|
|
||||||
# eclipse
|
# eclipse
|
||||||
bin
|
bin
|
||||||
*.launch
|
*.launch
|
||||||
|
|||||||
@@ -2,24 +2,41 @@ buildscript {
|
|||||||
repositories {
|
repositories {
|
||||||
jcenter()
|
jcenter()
|
||||||
maven { url = "http://files.minecraftforge.net/maven" }
|
maven { url = "http://files.minecraftforge.net/maven" }
|
||||||
|
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
|
||||||
|
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.
|
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
||||||
|
|
||||||
|
sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly.
|
||||||
version = "1.0"
|
|
||||||
group = "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
|
||||||
archivesBaseName = "modid"
|
|
||||||
|
|
||||||
sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly.
|
|
||||||
compileJava {
|
compileJava {
|
||||||
sourceCompatibility = targetCompatibility = "1.6"
|
sourceCompatibility = targetCompatibility = "1.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
group = "${mod_group}"
|
||||||
|
|
||||||
|
version = "${mod_version}"
|
||||||
|
|
||||||
|
archivesBaseName = "${mod_name}"
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "1.11-13.19.1.2199"
|
version = "1.11-13.19.1.2199"
|
||||||
runDir = "run"
|
runDir = "run"
|
||||||
@@ -55,23 +72,44 @@ dependencies {
|
|||||||
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
||||||
// http://www.gradle.org/docs/current/userguide/dependency_management.html
|
// http://www.gradle.org/docs/current/userguide/dependency_management.html
|
||||||
|
|
||||||
|
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.
|
// this will ensure that this task is redone when the versions change.
|
||||||
inputs.property "version", project.version
|
|
||||||
inputs.property "mcversion", project.minecraft.version
|
inputs.property "version", "${mod_version}"
|
||||||
|
|
||||||
|
inputs.property "mcversion", "${mc_version}"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// replace stuff in mcmod.info, nothing else
|
// replace stuff in mcmod.info, nothing else
|
||||||
|
|
||||||
from(sourceSets.main.resources.srcDirs) {
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
|
|
||||||
include 'mcmod.info'
|
include 'mcmod.info'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// replace version and mcversion
|
// replace version and mcversion
|
||||||
expand 'version':project.version, 'mcversion':project.minecraft.version
|
|
||||||
|
expand 'version':"${mod_version}", 'mcversion':"${mc_version}"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// copy everything else except the mcmod.info
|
|
||||||
|
|
||||||
|
// copy everything else, thats not the mcmod.info
|
||||||
|
|
||||||
from(sourceSets.main.resources.srcDirs) {
|
from(sourceSets.main.resources.srcDirs) {
|
||||||
|
|
||||||
exclude 'mcmod.info'
|
exclude 'mcmod.info'
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#Splash screen properties
|
#Splash screen properties
|
||||||
#Mon Dec 26 21:22:51 EST 2016
|
#Fri Dec 30 16:33:13 EST 2016
|
||||||
logoTexture=textures/gui/title/mojang.png
|
logoTexture=textures/gui/title/mojang.png
|
||||||
background=0xFFFFFF
|
background=0xFFFFFF
|
||||||
memoryGood=0x78CB34
|
memoryGood=0x78CB34
|
||||||
|
|||||||
BIN
1.11/e_particle.png
Normal file
BIN
1.11/e_particle.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 159 B |
113
1.11/fireboxV3.json
Normal file
113
1.11/fireboxV3.json
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"particle": "blocks/e_particle",
|
||||||
|
"texture": "primal:blocks/brick"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"__comment": "Cube1",
|
||||||
|
"from": [ 0, 0, 0 ],
|
||||||
|
"to": [ 16, 8, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube2",
|
||||||
|
"from": [ 0, 8, 14 ],
|
||||||
|
"to": [ 4, 12, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 4, 2 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 14, 4, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 12, 4, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 14, 4, 16, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube2",
|
||||||
|
"from": [ 12, 8, 14 ],
|
||||||
|
"to": [ 16, 12, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 15, 4, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 4, 1 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 12, 4, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 4, 1, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 15, 4, 16, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 0, 8, 0 ],
|
||||||
|
"to": [ 2, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 2, 14 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 2, 2, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 14, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 2, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 2, 0, 16, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 14, 8, 0 ],
|
||||||
|
"to": [ 16, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 14, 2, 15 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 2, 0.5, 16, 3 ], "texture": "#texture", "rotation": 90 },
|
||||||
|
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 2, 0, 16, 7 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube6",
|
||||||
|
"from": [ 0, 12, 14 ],
|
||||||
|
"to": [ 16, 16, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture", "rotation": 90 },
|
||||||
|
"north": { "uv": [ 0, 3, 16, 7 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 14, 0, 16, 4 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube7",
|
||||||
|
"from": [ 2, 8, 0 ],
|
||||||
|
"to": [ 14, 16, 2 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 2, 0, 14, 0 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 12, 14, 14.5 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 2, 0, 14, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 2, 0, 14, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 0, 0, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube8",
|
||||||
|
"from": [ -2, 0, -2 ],
|
||||||
|
"to": [ -1, 1, -1 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 16, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 0, 0 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 16, 15, 16, 16 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 15, 0, 16 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 15, 0, 16 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 16, 15, 16, 16 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
113
1.11/firebox_litV3.json
Normal file
113
1.11/firebox_litV3.json
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
|
"textures": {
|
||||||
|
"texture": "forgecraft:blocks/brick",
|
||||||
|
"texture1": "forgecraft:blocks/brick_lit"
|
||||||
|
},
|
||||||
|
"elements": [
|
||||||
|
{
|
||||||
|
"__comment": "Cube1",
|
||||||
|
"from": [ 0, 0, 0 ],
|
||||||
|
"to": [ 16, 8, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" },
|
||||||
|
"north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube2",
|
||||||
|
"from": [ 0, 8, 14 ],
|
||||||
|
"to": [ 4, 12, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 4, 2 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 14, 4, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 12, 4, 16, 8 ], "texture": "#texture1" },
|
||||||
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 14, 4, 16, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube2",
|
||||||
|
"from": [ 12, 8, 14 ],
|
||||||
|
"to": [ 16, 12, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 15, 4, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 4, 1 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture1" },
|
||||||
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 4, 1, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 15, 4, 16, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 0, 8, 0 ],
|
||||||
|
"to": [ 2, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 2, 14 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 2, 2, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 14, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 2, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 1, 4, 15, 12 ], "texture": "#texture1" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 14, 8, 0 ],
|
||||||
|
"to": [ 16, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 14, 2, 15 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 1, 1, 15, 3 ], "texture": "#texture", "rotation": 90 },
|
||||||
|
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 1, 4, 15, 11 ], "texture": "#texture1" },
|
||||||
|
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube6",
|
||||||
|
"from": [ 0, 12, 14 ],
|
||||||
|
"to": [ 16, 16, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture", "rotation": 90 },
|
||||||
|
"north": { "uv": [ 0, 2, 16, 6 ], "texture": "#texture1" },
|
||||||
|
"south": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 14, 0, 16, 4 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube7",
|
||||||
|
"from": [ 2, 8, 0 ],
|
||||||
|
"to": [ 14, 16, 2 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 2, 0, 14, 0 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 12, 14, 14.5 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 2, 0, 14, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 2, 4, 14, 12 ], "texture": "#texture1" },
|
||||||
|
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 0, 0, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube8",
|
||||||
|
"from": [ -2, 0, -2 ],
|
||||||
|
"to": [ -1, 1, -1 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 16, 0, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 0, 0 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 16, 15, 16, 16 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 15, 0, 16 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 15, 0, 16 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 16, 15, 16, 16 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1,3 +1,13 @@
|
|||||||
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
|
# ~/.gradle/gradle.properties
|
||||||
# This is required to provide enough memory for the Minecraft decompilation process.
|
#
|
||||||
|
#org.gradle.daemon=true
|
||||||
org.gradle.jvmargs=-Xmx3G
|
org.gradle.jvmargs=-Xmx3G
|
||||||
|
|
||||||
|
mod_group=nmd.primal.forgecraft
|
||||||
|
mod_name=ForgeCraft
|
||||||
|
mod_version=1.0.1
|
||||||
|
forge_version=12.18.3.2185
|
||||||
|
mcp_mappings=snapshot_20161111
|
||||||
|
mc_version=1.11
|
||||||
|
|
||||||
|
primal_version=0.2.11
|
||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -10,3 +10,531 @@
|
|||||||
[21:22:41] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
[21:22:41] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
[21:22:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
[21:22:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
[21:22:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
[21:22:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:07:20] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:07:21] [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]
|
||||||
|
[22:07:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:07:21] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:07:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:07:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:11:25] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:11:25] [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]
|
||||||
|
[22:11:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:11:25] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:11:25] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:11:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:14:29] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:14:29] [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]
|
||||||
|
[22:14:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:14:29] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:14:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:14:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:37:51] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:37:51] [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]
|
||||||
|
[22:37:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:37:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:37:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:37:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:45:24] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:45:24] [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]
|
||||||
|
[22:45:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:45:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:45:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:45:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:46:17] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:46:17] [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]
|
||||||
|
[22:46:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:46:17] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:46:17] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:46:17] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:49:22] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:49:22] [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]
|
||||||
|
[22:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:49:22] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:49:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:49:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:28:01] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[10:28:01] [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]
|
||||||
|
[10:28:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:28:01] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:28:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[10:28:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:31:18] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[10:31:18] [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]
|
||||||
|
[10:31:18] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:31:18] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:31:18] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[10:31:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:33:28] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[10:33:28] [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]
|
||||||
|
[10:33:28] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:33:29] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[10:33:29] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[10:33:29] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:02:03] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:02:03] [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]
|
||||||
|
[11:02:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:02:03] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:02:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:02:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:22:55] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:22:55] [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]
|
||||||
|
[11:22:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:22:55] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:22:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:22:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:25:39] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:25:39] [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]
|
||||||
|
[11:25:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:25:39] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:25:39] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:25:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:27:48] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:27:48] [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]
|
||||||
|
[11:27:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:27:48] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:27:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:27:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:29:19] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:29:19] [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]
|
||||||
|
[11:29:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:29:19] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:29:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:29:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:33:42] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:33:42] [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]
|
||||||
|
[11:33:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:33:42] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:33:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:33:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:36:00] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:36:00] [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]
|
||||||
|
[11:36:00] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:36:00] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:36:00] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:36:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:42:34] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:42:34] [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]
|
||||||
|
[11:42:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:42:34] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:42:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:42:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:49:12] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:49:12] [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]
|
||||||
|
[11:49:12] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:49:12] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:49:12] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:49:12] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:50:24] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:50:24] [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]
|
||||||
|
[11:50:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:50:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:50:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:50:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:54:16] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:54:16] [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]
|
||||||
|
[11:54:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:54:16] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:54:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:54:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:57:52] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:57: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]
|
||||||
|
[11:57:52] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:57:52] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:57:52] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:57:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:59:11] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[11:59:11] [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]
|
||||||
|
[11:59:11] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:59:11] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[11:59:11] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[11:59:11] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:08:10] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:08:10] [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]
|
||||||
|
[12:08:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:08:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:08:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:08:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:13:54] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:13:54] [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]
|
||||||
|
[12:13:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:13:54] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:13:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:13:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:15:07] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:15:07] [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]
|
||||||
|
[12:15:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:15:07] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:15:07] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:15:07] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:23:41] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:23:41] [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]
|
||||||
|
[12:23:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:23:41] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:23:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:23:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:34:22] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:34:22] [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]
|
||||||
|
[12:34:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:34:22] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:34:22] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:34:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:35:47] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:35:47] [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]
|
||||||
|
[12:35:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:35:47] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:35:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:35:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:37:10] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:37:10] [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]
|
||||||
|
[12:37:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:37:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:37:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:37:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:40:55] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:40:55] [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]
|
||||||
|
[12:40:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:40:55] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:40:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:40:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:43:58] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:43:58] [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]
|
||||||
|
[12:43:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:43:58] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:43:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:43:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:45:26] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:45:26] [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]
|
||||||
|
[12:45:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:45:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:45:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:45:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:46:30] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:46:30] [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]
|
||||||
|
[12:46:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:46:30] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:46:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:46:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:48:37] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:48:37] [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]
|
||||||
|
[12:48:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:48:37] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:48:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:48:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:49:37] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:49:37] [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]
|
||||||
|
[12:49:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:49:37] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:49:37] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:49:37] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:50:27] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:50:27] [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]
|
||||||
|
[12:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:50:27] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:50:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:50:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:51:30] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[12:51:30] [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]
|
||||||
|
[12:51:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:51:30] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[12:51:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[12:51:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[13:07:29] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[13:07:30] [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]
|
||||||
|
[13:07:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[13:07:30] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[13:07:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[13:07:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[14:36:33] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[14:36:33] [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]
|
||||||
|
[14:36:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[14:36:33] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[14:36:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[14:36:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[14:46:43] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[14:46:43] [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]
|
||||||
|
[14:46:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[14:46:43] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[14:46:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[14:46:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:07:26] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:07:26] [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]
|
||||||
|
[21:07:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:07:27] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:07:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:07:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:01] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:19:01] [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]
|
||||||
|
[21:19:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:01] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:19:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:59] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:19: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]
|
||||||
|
[21:19:59] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:59] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:59] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:19:59] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:23:03] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:23:03] [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]
|
||||||
|
[21:23:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:23:03] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:23:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:23:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:35:31] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:35:31] [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]
|
||||||
|
[21:35:31] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:35:31] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:35:31] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:35:31] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:46:02] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:46:02] [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]
|
||||||
|
[21:46:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:46:02] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:46:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:46:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:57:44] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:57:44] [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]
|
||||||
|
[21:57:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:57:44] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:57:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:57:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:59:02] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:59:02] [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]
|
||||||
|
[21:59:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:59:02] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:59:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:59:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:34:58] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:34:58] [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]
|
||||||
|
[22:34:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:34:58] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:34:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:34:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:36:41] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:36:41] [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]
|
||||||
|
[22:36:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:36:41] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:36:41] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:36:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:37:44] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:37:44] [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]
|
||||||
|
[22:37:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:37:44] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:37:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:37:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:40:54] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:40:54] [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]
|
||||||
|
[22:40:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:40:54] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:40:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:40:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:42:05] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:42:05] [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]
|
||||||
|
[22:42:05] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:42:05] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:42:05] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:42:05] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:43:24] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:43:24] [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]
|
||||||
|
[22:43:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:43:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:43:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:43:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:44:23] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:44:23] [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]
|
||||||
|
[22:44:23] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:44:23] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:44:23] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:44:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:45:14] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:45:14] [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]
|
||||||
|
[22:45:14] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:45:14] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:45:14] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:45:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:46:51] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:46:51] [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]
|
||||||
|
[22:46:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:46:51] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:46:51] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:46:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:48:01] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:48:01] [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]
|
||||||
|
[22:48:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:48:01] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:48:01] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:48:01] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:57:48] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[22:57:48] [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]
|
||||||
|
[22:57:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:57:48] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[22:57:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[22:57:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:00:30] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[23:00:30] [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]
|
||||||
|
[23:00:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:00:30] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:00:30] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[23:00:30] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:01:58] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[23:01:58] [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]
|
||||||
|
[23:01:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:01:58] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:01:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[23:01:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:02:50] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[23:02:50] [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]
|
||||||
|
[23:02:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:02:50] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:02:50] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[23:02:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:07:02] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[23:07:02] [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]
|
||||||
|
[23:07:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:07:02] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[23:07:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[23:07:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[01:58:44] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[01:58:44] [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:58:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[01:58:45] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[01:58:45] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[01:58:45] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:29:24] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[20:29:24] [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]
|
||||||
|
[20:29:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:29:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:29:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[20:29:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:36:08] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[20:36:08] [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]
|
||||||
|
[20:36:08] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:36:08] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:36:08] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[20:36:08] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:48:03] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[20:48:03] [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]
|
||||||
|
[20:48:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:48:03] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:48:03] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[20:48:03] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:50:14] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[20:50:14] [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]
|
||||||
|
[20:50:14] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:50:14] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:50:14] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[20:50:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:54:39] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[20:54:40] [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]
|
||||||
|
[20:54:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:54:40] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[20:54:40] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[20:54:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:14:04] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:14:04] [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]
|
||||||
|
[21:14:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:14:04] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:14:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:14:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:15:35] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:15:35] [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]
|
||||||
|
[21:15:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:15:35] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:15:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:15:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:17:09] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:17:09] [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]
|
||||||
|
[21:17:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:17:09] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:17:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:17:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:18:43] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:18:43] [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]
|
||||||
|
[21:18:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:18:43] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:18:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:18:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:35] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:19:35] [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]
|
||||||
|
[21:19:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:35] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:19:35] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:19:35] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:22:00] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:22:00] [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]
|
||||||
|
[21:22:00] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:22:00] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:22:00] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:22:00] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:29:44] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:29:44] [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]
|
||||||
|
[21:29:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:29:44] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:29:44] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:29:44] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:34:48] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:34:48] [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]
|
||||||
|
[21:34:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:34:48] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:34:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:34:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:38:08] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:38:09] [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]
|
||||||
|
[21:38:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:38:09] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:38:09] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:38:09] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:40:21] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:40:21] [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]
|
||||||
|
[21:40:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:40:21] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:40:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:40:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:41:49] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:41:49] [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]
|
||||||
|
[21:41:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:41:49] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:41:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:41:49] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:44:09] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:44:09] [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]
|
||||||
|
[21:44:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:44:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:44:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:44:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:45:21] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:45:21] [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]
|
||||||
|
[21:45:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:45:21] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:45:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:45:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:45:57] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:45:58] [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]
|
||||||
|
[21:45:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:45:58] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:45:58] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:45:58] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:47:26] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[21:47:26] [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]
|
||||||
|
[21:47:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:47:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[21:47:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[21:47:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:24:55] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[16:24:55] [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]
|
||||||
|
[16:24:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:24:55] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:24:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[16:24:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:28:18] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[16:28:18] [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]
|
||||||
|
[16:28:18] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:28:18] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:28:18] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
|
||||||
|
[16:28:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
[16:33:03] [main/INFO] [GradleStart]: Extra: []
|
||||||
|
[16:33:03] [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]
|
||||||
|
[16:33:03] [main/INFO] [LaunchWrapper]: Loading 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]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
[21:22:48] [Client thread/INFO]: Setting user: Player57
|
[16:33:10] [Client thread/INFO]: Setting user: Player413
|
||||||
[21:22:51] [Client thread/INFO]: LWJGL Version: 2.9.2
|
[16:33:13] [Client thread/WARN]: Skipping bad option: lastServer:
|
||||||
[21:22:54] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft
|
[16:33:13] [Client thread/INFO]: LWJGL Version: 2.9.2
|
||||||
[21:22:55] [Client thread/WARN]: Invalid sounds.json
|
[16:33:16] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft
|
||||||
|
[16:33:17] [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:?]
|
||||||
@@ -25,14 +26,14 @@ 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:?]
|
||||||
[21:22:55] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
[16:33:17] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
||||||
[21:22:55] [Thread-6/INFO]: Initializing LWJGL OpenAL
|
[16:33:17] [Thread-6/INFO]: Initializing LWJGL OpenAL
|
||||||
[21:22:55] [Thread-6/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
[16:33:17] [Thread-6/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
||||||
[21:22:55] [Thread-6/INFO]: OpenAL initialized.
|
[16:33:18] [Thread-6/INFO]: OpenAL initialized.
|
||||||
[21:22:56] [Sound Library Loader/INFO]: Sound engine started
|
[16:33:18] [Sound Library Loader/INFO]: Sound engine started
|
||||||
[21:22:57] [Client thread/INFO]: Created: 16x16 textures-atlas
|
[16:33:19] [Client thread/INFO]: Created: 16x16 textures-atlas
|
||||||
[21:22:59] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft
|
[16:33:21] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Kitsu's Forgecraft
|
||||||
[21:23:00] [Client thread/WARN]: Invalid sounds.json
|
[16:33:22] [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.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?]
|
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?]
|
||||||
@@ -59,28 +60,93 @@ 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:?]
|
||||||
[21:23:00] [Client thread/INFO]: SoundSystem shutting down...
|
[16:33:22] [Client thread/INFO]: SoundSystem shutting down...
|
||||||
[21:23:00] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
|
[16:33:22] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
|
||||||
[21:23:00] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
[16:33:22] [Sound Library Loader/INFO]: Starting up SoundSystem...
|
||||||
[21:23:00] [Thread-8/INFO]: Initializing LWJGL OpenAL
|
[16:33:22] [Thread-8/INFO]: Initializing LWJGL OpenAL
|
||||||
[21:23:00] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
[16:33:22] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)
|
||||||
[21:23:00] [Thread-8/INFO]: OpenAL initialized.
|
[16:33:22] [Thread-8/INFO]: OpenAL initialized.
|
||||||
[21:23:00] [Sound Library Loader/INFO]: Sound engine started
|
[16:33:22] [Sound Library Loader/INFO]: Sound engine started
|
||||||
[21:23:01] [Client thread/INFO]: Created: 512x512 textures-atlas
|
[16:33:23] [Client thread/INFO]: Created: 512x512 textures-atlas
|
||||||
[21:23:03] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
|
[16:33:24] [Client thread/WARN]: Skipping bad option: lastServer:
|
||||||
[21:23:19] [Server thread/INFO]: Starting integrated minecraft server version 1.11
|
[16:33:30] [Server thread/INFO]: Starting integrated minecraft server version 1.11
|
||||||
[21:23:19] [Server thread/INFO]: Generating keypair
|
[16:33:30] [Server thread/INFO]: Generating keypair
|
||||||
[21:23:20] [Server thread/INFO]: Preparing start region for level 0
|
[16:33:30] [Server thread/INFO]: Preparing start region for level 0
|
||||||
[21:23:21] [Server thread/INFO]: Changing view distance to 12, from 10
|
[16:33:30] [Server thread/INFO]: Changing view distance to 12, from 10
|
||||||
[21:23:22] [Server thread/INFO]: Player57[local:E:fb539682] logged in with entity id 0 at (1462.5, 4.0, -834.5)
|
[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]
|
||||||
[21:23:22] [Server thread/INFO]: Player57 joined the game
|
com.mojang.authlib.exceptions.AuthenticationUnavailableException: Cannot contact authentication server
|
||||||
[21:23:23] [Server thread/INFO]: Saving and pausing game...
|
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:85) ~[YggdrasilAuthenticationService.class:?]
|
||||||
[21:23:23] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
|
||||||
[21:23:23] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:173) [YggdrasilMinecraftSessionService.class:?]
|
||||||
[21:23:23] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
at net.minecraft.client.Minecraft.launchIntegratedServer(Minecraft.java:2443) [Minecraft.class:?]
|
||||||
[21:23:23] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@2365a32c[id=503b4b59-0d6c-31d1-9440-529de2c14614,name=Player57,properties={},legacy=false]
|
at net.minecraftforge.fml.client.FMLClientHandler.tryLoadExistingWorld(FMLClientHandler.java:748) [FMLClientHandler.class:?]
|
||||||
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
|
at net.minecraft.client.gui.GuiListWorldSelectionEntry.loadWorld(GuiListWorldSelectionEntry.java:253) [GuiListWorldSelectionEntry.class:?]
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.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.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:60) [YggdrasilMinecraftSessionService$1.class:?]
|
||||||
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
|
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
|
||||||
@@ -100,26 +166,48 @@ com.mojang.authlib.exceptions.AuthenticationException: The client has sent too m
|
|||||||
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?: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.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_111]
|
||||||
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_111]
|
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_111]
|
||||||
[21:23:26] [Server thread/INFO]: Saving and pausing game...
|
Caused by: java.net.UnknownHostException: sessionserver.mojang.com
|
||||||
[21:23:26] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:184) ~[?:1.8.0_111]
|
||||||
[21:23:26] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[?:1.8.0_111]
|
||||||
[21:23:26] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
at java.net.Socket.connect(Socket.java:589) ~[?:1.8.0_111]
|
||||||
[21:23:31] [Server thread/INFO]: Changing difficulty to PEACEFUL, from NORMAL
|
at sun.security.ssl.SSLSocketImpl.connect(SSLSocketImpl.java:668) ~[?:1.8.0_111]
|
||||||
[21:24:22] [Server thread/INFO]: Player57 has just earned the achievement [Taking Inventory]
|
at sun.net.NetworkClient.doConnect(NetworkClient.java:175) ~[?:1.8.0_111]
|
||||||
[21:24:22] [Client thread/INFO]: [CHAT] Player57 has just earned the achievement [Taking Inventory]
|
at sun.net.www.http.HttpClient.openServer(HttpClient.java:432) ~[?:1.8.0_111]
|
||||||
[21:25:32] [Server thread/INFO]: Saving and pausing game...
|
at sun.net.www.http.HttpClient.openServer(HttpClient.java:527) ~[?:1.8.0_111]
|
||||||
[21:25:32] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
at sun.net.www.protocol.https.HttpsClient.<init>(HttpsClient.java:264) ~[?:1.8.0_111]
|
||||||
[21:25:32] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
at sun.net.www.protocol.https.HttpsClient.New(HttpsClient.java:367) ~[?:1.8.0_111]
|
||||||
[21:25:32] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.getNewHttpClient(AbstractDelegateHttpsURLConnection.java:191) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Stopping server
|
at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1181) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Saving players
|
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1022) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Player57 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}}
|
at sun.net.www.protocol.http.HttpURLConnection$6.run(HttpURLConnection.java:1020) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Player57 left the game
|
at java.security.AccessController.doPrivileged(Native Method) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Stopping singleplayer server as player logged out
|
at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:782) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Saving worlds
|
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1019) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Saving chunks for level 'Test'/Overworld
|
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Saving chunks for level 'Test'/Nether
|
at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1546) ~[?:1.8.0_111]
|
||||||
[21:25:33] [Server thread/INFO]: Saving chunks for level 'Test'/The End
|
at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:91) ~[?:1.8.0_111]
|
||||||
[21:25:34] [Client thread/INFO]: Stopping!
|
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1466) ~[?:1.8.0_111]
|
||||||
[21:25:34] [Client thread/INFO]: SoundSystem shutting down...
|
at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1464) ~[?:1.8.0_111]
|
||||||
[21:25:34] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
|
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
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ bobView:true
|
|||||||
anaglyph3d:false
|
anaglyph3d:false
|
||||||
maxFps:120
|
maxFps:120
|
||||||
fboEnable:true
|
fboEnable:true
|
||||||
difficulty:2
|
difficulty:0
|
||||||
fancyGraphics:true
|
fancyGraphics:true
|
||||||
ao:2
|
ao:2
|
||||||
renderClouds:true
|
renderClouds:true
|
||||||
@@ -50,7 +50,7 @@ attackIndicator:1
|
|||||||
showSubtitles:false
|
showSubtitles:false
|
||||||
realmsNotifications:true
|
realmsNotifications:true
|
||||||
enableWeakAttacks:false
|
enableWeakAttacks:false
|
||||||
autoJump:true
|
autoJump:false
|
||||||
key_key.attack:-100
|
key_key.attack:-100
|
||||||
key_key.use:-99
|
key_key.use:-99
|
||||||
key_key.forward:17
|
key_key.forward:17
|
||||||
@@ -82,7 +82,7 @@ key_key.hotbar.7:8
|
|||||||
key_key.hotbar.8:9
|
key_key.hotbar.8:9
|
||||||
key_key.hotbar.9:10
|
key_key.hotbar.9:10
|
||||||
soundCategory_master:1.0
|
soundCategory_master:1.0
|
||||||
soundCategory_music:1.0
|
soundCategory_music:0.0
|
||||||
soundCategory_record:1.0
|
soundCategory_record:1.0
|
||||||
soundCategory_weather:1.0
|
soundCategory_weather:1.0
|
||||||
soundCategory_block:1.0
|
soundCategory_block:1.0
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -32,9 +32,9 @@ public class CommonUtils {
|
|||||||
if (block == Blocks.COAL_BLOCK) return 16000;
|
if (block == Blocks.COAL_BLOCK) return 16000;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item instanceof ItemTool && ((ItemTool)item).getToolMaterialName().equals("WOOD")) return 200;
|
//if (item instanceof ItemTool && ((ItemTool)item).getToolMaterialName().equals("WOOD")) return 200;
|
||||||
if (item instanceof ItemSword && ((ItemSword)item).getToolMaterialName().equals("WOOD")) return 200;
|
//if (item instanceof ItemSword && ((ItemSword)item).getToolMaterialName().equals("WOOD")) return 200;
|
||||||
if (item instanceof ItemHoe && ((ItemHoe)item).getMaterialName().equals("WOOD")) return 200;
|
//if (item instanceof ItemHoe && ((ItemHoe)item).getMaterialName().equals("WOOD")) return 200;
|
||||||
if(item == Items.STICK) return 100;
|
if(item == Items.STICK) return 100;
|
||||||
if(item == Items.COAL) return 1600;
|
if(item == Items.COAL) return 1600;
|
||||||
if (item == Item.getItemFromBlock(Blocks.SAPLING)) return 100;
|
if (item == Item.getItemFromBlock(Blocks.SAPLING)) return 100;
|
||||||
|
|||||||
@@ -9,19 +9,21 @@ import net.minecraft.block.properties.PropertyBool;
|
|||||||
import net.minecraft.block.state.BlockStateContainer;
|
import net.minecraft.block.state.BlockStateContainer;
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.entity.EntityLivingBase;
|
import net.minecraft.entity.EntityLivingBase;
|
||||||
import net.minecraft.entity.item.EntityItem;
|
import net.minecraft.entity.item.EntityItem;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
import net.minecraft.init.Blocks;
|
import net.minecraft.init.Blocks;
|
||||||
import net.minecraft.init.Items;
|
import net.minecraft.init.Items;
|
||||||
|
import net.minecraft.init.SoundEvents;
|
||||||
import net.minecraft.inventory.InventoryHelper;
|
import net.minecraft.inventory.InventoryHelper;
|
||||||
|
import net.minecraft.inventory.ItemStackHelper;
|
||||||
import net.minecraft.item.Item;
|
import net.minecraft.item.Item;
|
||||||
import net.minecraft.item.ItemStack;
|
import net.minecraft.item.ItemStack;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.tileentity.TileEntityFurnace;
|
import net.minecraft.tileentity.TileEntityFurnace;
|
||||||
import net.minecraft.util.EnumBlockRenderType;
|
import net.minecraft.util.*;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.math.AxisAlignedBB;
|
||||||
import net.minecraft.util.EnumHand;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.IBlockAccess;
|
import net.minecraft.world.IBlockAccess;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
@@ -33,6 +35,8 @@ import nmd.primal.forgecraft.tiles.TileFirebox;
|
|||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
import static net.minecraft.block.BlockHorizontal.FACING;
|
import static net.minecraft.block.BlockHorizontal.FACING;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -41,7 +45,8 @@ import static net.minecraft.block.BlockHorizontal.FACING;
|
|||||||
public class Firebox extends CustomContainerFacing implements ITileEntityProvider {
|
public class Firebox extends CustomContainerFacing implements ITileEntityProvider {
|
||||||
|
|
||||||
public static final PropertyBool ACTIVE = PropertyBool.create("active");
|
public static final PropertyBool ACTIVE = PropertyBool.create("active");
|
||||||
|
protected static final AxisAlignedBB collideBox = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.99D, 1.0D);
|
||||||
|
protected static final AxisAlignedBB boundBox = new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 1.0D, 1.0D);
|
||||||
|
|
||||||
public Firebox(Material material) {
|
public Firebox(Material material) {
|
||||||
super(material);
|
super(material);
|
||||||
@@ -58,92 +63,121 @@ public class Firebox extends CustomContainerFacing implements ITileEntityProvide
|
|||||||
return new TileFirebox();
|
return new TileFirebox();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos)
|
||||||
|
{
|
||||||
|
return collideBox;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
|
||||||
|
{
|
||||||
|
return boundBox;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ)
|
||||||
{
|
{
|
||||||
if (!world.isRemote)
|
if (!world.isRemote) {
|
||||||
{
|
|
||||||
TileFirebox tile = (TileFirebox) world.getTileEntity(pos);
|
TileFirebox tile = (TileFirebox) world.getTileEntity(pos);
|
||||||
if (tile != null)
|
if (tile != null) {
|
||||||
{
|
ItemStack pItem = player.inventory.getCurrentItem();
|
||||||
ItemStack playerStack = player.getHeldItemMainhand();
|
ItemStack tileItem = tile.getSlotStack(0);
|
||||||
Item playerItem;
|
if(pItem.isEmpty()) {
|
||||||
ItemStack tileStack = tile.getSlotStack(0);
|
if (player.isSneaking()) {
|
||||||
|
if (!tileItem.isEmpty()) {
|
||||||
if(playerStack != null){
|
CommonUtils.spawnItemEntity(world, player, tile.getSlotStack(0));
|
||||||
playerItem = playerStack.getItem();
|
tile.setSlotStack(0, ItemStack.EMPTY);
|
||||||
if (playerItem.equals(Items.FLINT_AND_STEEL) || playerItem.equals(Item.getItemFromBlock(Blocks.TORCH))) {
|
tile.markDirty();
|
||||||
if (CommonUtils.getVanillaItemBurnTime(tileStack) > 0) {
|
tile.updateBlock();
|
||||||
world.setBlockState(pos, state.withProperty(ACTIVE, true), 2);
|
return true;
|
||||||
BlockPos tempPos = new BlockPos(pos.getX(), pos.getY()+1, pos.getZ());
|
|
||||||
if(world.getBlockState(tempPos).getBlock().equals(Blocks.AIR)){
|
|
||||||
world.setBlockState(tempPos, Blocks.FIRE.getDefaultState(), 2);
|
|
||||||
tile.markDirty();
|
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
|
||||||
}
|
|
||||||
if(playerItem.equals(Items.FLINT_AND_STEEL)){
|
|
||||||
player.inventory.getCurrentItem().damageItem(1, player);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(tile.getSlotStack(0)!=ItemStack.EMPTY){
|
}
|
||||||
if(CommonUtils.getVanillaItemBurnTime(playerStack) > 0) {
|
if((pItem.getItem() == Items.FLINT_AND_STEEL) /*|| (pItem.getItem() == PrimalItems.FIRE_BOW)*/ || pItem.getItem() == Item.getItemFromBlock(Blocks.TORCH)) {
|
||||||
if (tileStack.getItem() == playerItem && tileStack.getItemDamage() == playerStack.getItemDamage()) {
|
world.setBlockState(pos, state.withProperty(ACTIVE, true), 2);
|
||||||
//tile.setInventorySlotContents(0, playerStack);
|
BlockPos tempPos = new BlockPos(pos.getX(), pos.getY() + 1, pos.getZ());
|
||||||
ItemStack tempStack = new ItemStack(tileStack.getItem(), tileStack.getCount() + 1, tileStack.getItemDamage());
|
if(world.getBlockState(tempPos).getBlock() == Blocks.AIR) {
|
||||||
if(tileStack.getCount() < 64) {
|
world.setBlockState(tempPos, Blocks.FIRE.getDefaultState(), 2);
|
||||||
tile.setSlotStack(0, tempStack);
|
}
|
||||||
player.inventory.decrStackSize(player.inventory.currentItem, 1);
|
|
||||||
//player.setHeldItem(EnumHand.MAIN_HAND, null);
|
tile.markDirty();
|
||||||
|
tile.updateBlock();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if((!pItem.isEmpty()) && (CommonUtils.getVanillaItemBurnTime(pItem) > 0)) {
|
||||||
|
if (!tileItem.isEmpty()){
|
||||||
|
if(pItem.getItem() == tileItem.getItem()){
|
||||||
|
if(tileItem.getCount() < 64){
|
||||||
|
if(tileItem.getCount() + pItem.getCount() <= 64){
|
||||||
|
tileItem.grow(pItem.getCount());
|
||||||
tile.markDirty();
|
tile.markDirty();
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
tile.updateBlock();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if(tileItem.getCount() + pItem.getCount() > 64){
|
||||||
|
pItem.setCount(64-pItem.getCount());
|
||||||
|
tileItem.setCount(64);
|
||||||
|
tile.markDirty();
|
||||||
|
tile.updateBlock();
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(tile.getSlotStack(0)==ItemStack.EMPTY){
|
if(tileItem.isEmpty()) {
|
||||||
if(CommonUtils.getVanillaItemBurnTime(playerStack) > 0) {
|
tile.setSlotStack(0, pItem);
|
||||||
if (playerItem != Items.FLINT_AND_STEEL || playerItem != Item.getItemFromBlock(Blocks.TORCH)) {
|
player.inventory.setInventorySlotContents(player.inventory.currentItem, ItemStack.EMPTY);
|
||||||
tile.setSlotStack(0, playerStack);
|
return true;
|
||||||
player.setHeldItem(EnumHand.MAIN_HAND, ItemStack.EMPTY);
|
}
|
||||||
tile.markDirty();
|
}
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
}
|
||||||
}
|
}
|
||||||
}
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if(tileStack != null && playerStack == null && player.isSneaking()){
|
@Override
|
||||||
if(state.getValue(ACTIVE)==true){
|
public void onEntityCollidedWithBlock(World world, BlockPos pos, IBlockState state, Entity ent)
|
||||||
world.setBlockState(pos, state.withProperty(ACTIVE, false), 2);
|
{
|
||||||
ItemStack returnStack = new ItemStack(tileStack.getItem(), tileStack.getCount() - 1);
|
if (!world.isRemote)
|
||||||
player.setHeldItem(EnumHand.MAIN_HAND, returnStack);
|
{
|
||||||
tile.markDirty();
|
if(ent instanceof EntityItem){
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
//System.out.println("collision");
|
||||||
} else {
|
EntityItem itemEnt = (EntityItem) ent;
|
||||||
player.setHeldItem(EnumHand.MAIN_HAND, tileStack);
|
ItemStack stack = itemEnt.getEntityItem();
|
||||||
tile.setSlotStack(0, ItemStack.EMPTY);
|
//System.out.println(stack);
|
||||||
tile.markDirty();
|
TileFirebox tile = (TileFirebox)world.getTileEntity(pos);
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
if (tile != null) {
|
||||||
}
|
if(!tile.getSlotStack(0).isEmpty()) {
|
||||||
|
if(tile.getSlotStack(0).getItem() == stack.getItem()) {
|
||||||
tile.markDirty();
|
int entStackSize = stack.getCount();
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
int tileStackSize = tile.getSlotStack(0).getCount();
|
||||||
}
|
int tileSizeRemaining = 64 - tileStackSize;
|
||||||
if(!player.isSneaking()){
|
if (tileStackSize < 64) {
|
||||||
if(playerStack == null) {
|
if (entStackSize <= tileSizeRemaining) {
|
||||||
if (tileStack != null) {
|
tile.incrementStackSize(tile.getSlotList(), 0, entStackSize);
|
||||||
ItemStack tempStack1 = new ItemStack(tileStack.getItem(), 1, tileStack.getItemDamage());
|
//tile.setSlotStack(0, new ItemStack(stack.getItem(), tileStackSize + entStackSize, stack.getItemDamage()));
|
||||||
ItemStack resetStack = new ItemStack(tileStack.getItem(), tileStack.getCount() - 1, tileStack.getItemDamage());
|
ent.setDead();
|
||||||
CommonUtils.spawnItemEntity(world, player, tempStack1);
|
world.notifyBlockUpdate(pos, state, state, 3);
|
||||||
//world.spawnEntityInWorld(new EntityItem(world, player.posX, player.posY, player.posZ, tempStack1));
|
tile.updateBlock();
|
||||||
tile.setSlotStack(0,resetStack);
|
}
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
if (entStackSize > tileSizeRemaining) {
|
||||||
}
|
tile.getSlotStack(0).setCount(64);
|
||||||
|
stack.setCount(64 - entStackSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (tile.getSlotStack(0).isEmpty()) {
|
||||||
|
//int entStackSize = stack.getCount();
|
||||||
|
tile.setSlotStack(0, itemEnt.getEntityItem());
|
||||||
|
itemEnt.setDead();
|
||||||
|
world.notifyBlockUpdate(pos, state, state, 3);
|
||||||
|
tile.updateBlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onBlockClicked(World world, BlockPos pos, EntityPlayer player) {
|
public void onBlockClicked(World world, BlockPos pos, EntityPlayer player) {
|
||||||
@@ -215,9 +249,16 @@ public class Firebox extends CustomContainerFacing implements ITileEntityProvide
|
|||||||
super.breakBlock(world, pos, state);
|
super.breakBlock(world, pos, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
/*@Override
|
||||||
public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack){
|
public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer) {
|
||||||
|
IBlockState state = super.onBlockPlaced(worldIn, pos, facing, hitX, hitY, hitZ, meta, placer);
|
||||||
|
return state.withProperty(FACING, placer.getHorizontalFacing()).withProperty(ACTIVE, Boolean.valueOf(false));
|
||||||
|
}*/
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBlockPlacedBy(World worldIn, BlockPos pos, IBlockState state, EntityLivingBase placer, ItemStack stack)
|
||||||
|
{
|
||||||
|
worldIn.setBlockState(pos, state.withProperty(FACING, placer.getHorizontalFacing()).withProperty(ACTIVE, Boolean.valueOf(false)), 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -344,11 +385,39 @@ public class Firebox extends CustomContainerFacing implements ITileEntityProvide
|
|||||||
{
|
{
|
||||||
return EnumBlockRenderType.MODEL;
|
return EnumBlockRenderType.MODEL;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
@SideOnly(Side.CLIENT)
|
||||||
Firebox States
|
@SuppressWarnings("incomplete-switch")
|
||||||
Off
|
public void randomDisplayTick(IBlockState state, World world, BlockPos pos, Random rand)
|
||||||
On
|
{
|
||||||
|
if(state.getValue(Firebox.ACTIVE) == true)
|
||||||
|
{
|
||||||
|
double d0 = (double)pos.getX() + 0.5D;
|
||||||
|
double d1 = (double)pos.getY() + 0.65D;
|
||||||
|
double d2 = (double)pos.getZ() + 0.5D;
|
||||||
|
double d3 = 0.52D;
|
||||||
|
double d4 = rand.nextDouble() * 0.6D - 0.3D;
|
||||||
|
|
||||||
*/
|
if (rand.nextDouble() < 0.1D)
|
||||||
|
{
|
||||||
|
world.playSound((double)pos.getX() + 0.5D, (double)pos.getY(), (double)pos.getZ() + 0.5D, SoundEvents.BLOCK_FURNACE_FIRE_CRACKLE, SoundCategory.BLOCKS, 1.0F, 1.0F, false);
|
||||||
|
}
|
||||||
|
if(rand.nextInt(4) == 1){
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0+d4, d1, d2+d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0+d4, d1, d2+d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
}
|
||||||
|
if(rand.nextInt(4) == 2){
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0+d4, d1, d2-d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0+d4, d1, d2+d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
}
|
||||||
|
if(rand.nextInt(4) == 3){
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0-d4, d1, d2+d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0+d4, d1, d2+d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
}
|
||||||
|
if(rand.nextInt(4) == 4){
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0-d4, d1, d2-d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
world.spawnParticle(EnumParticleTypes.FLAME, d0+d4, d1, d2+d4, 0.0D, 0.001D, 0.0D, new int[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,8 +9,12 @@ import net.minecraft.client.renderer.OpenGlHelper;
|
|||||||
import net.minecraft.client.renderer.RenderHelper;
|
import net.minecraft.client.renderer.RenderHelper;
|
||||||
import net.minecraft.client.renderer.RenderItem;
|
import net.minecraft.client.renderer.RenderItem;
|
||||||
import net.minecraft.client.renderer.block.model.ItemCameraTransforms;
|
import net.minecraft.client.renderer.block.model.ItemCameraTransforms;
|
||||||
|
import net.minecraft.client.renderer.entity.Render;
|
||||||
|
import net.minecraft.client.renderer.entity.RenderEntityItem;
|
||||||
import net.minecraft.client.renderer.entity.RenderManager;
|
import net.minecraft.client.renderer.entity.RenderManager;
|
||||||
|
import net.minecraft.client.renderer.texture.TextureManager;
|
||||||
import net.minecraft.client.renderer.texture.TextureMap;
|
import net.minecraft.client.renderer.texture.TextureMap;
|
||||||
|
import net.minecraft.client.renderer.tileentity.RenderItemFrame;
|
||||||
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
|
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
|
||||||
import net.minecraft.entity.item.EntityItem;
|
import net.minecraft.entity.item.EntityItem;
|
||||||
import net.minecraft.init.Items;
|
import net.minecraft.init.Items;
|
||||||
@@ -22,59 +26,21 @@ import net.minecraft.world.World;
|
|||||||
import nmd.primal.forgecraft.blocks.Firebox;
|
import nmd.primal.forgecraft.blocks.Firebox;
|
||||||
import nmd.primal.forgecraft.tiles.TileFirebox;
|
import nmd.primal.forgecraft.tiles.TileFirebox;
|
||||||
import org.lwjgl.opengl.GL11;
|
import org.lwjgl.opengl.GL11;
|
||||||
|
import scala.collection.parallel.ParIterableLike;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by kitsu on 12/4/2016.
|
* Created by kitsu on 12/4/2016.
|
||||||
*/
|
*/
|
||||||
public class TileFireboxRender extends TileEntitySpecialRenderer<TileFirebox>
|
public class TileFireboxRender extends TileEntitySpecialRenderer<TileFirebox>
|
||||||
{
|
{
|
||||||
private final RenderItem renderItem = Minecraft.getMinecraft().getRenderItem();
|
private RenderItem renderItem = Minecraft.getMinecraft().getRenderItem();
|
||||||
private int rotation;
|
//private EntityItem entItem = null;
|
||||||
private float translateX, translateZ;
|
|
||||||
private double textX, textZ;
|
|
||||||
private EntityItem entItem = null;
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void renderTileEntityAt(TileFirebox tile, double x, double y, double z, float partialTicks, int destroyStage) {
|
public void renderTileEntityAt(TileFirebox tile, double x, double y, double z, float partialTicks, int destroyStage)
|
||||||
|
{
|
||||||
GL11.glPushMatrix();
|
GL11.glPushMatrix();
|
||||||
GL11.glTranslated(x + 0.5D, y + 0.875D, z + 0.5D);
|
GL11.glTranslated(x + 0.5D, y + 0.825D, z + 0.5D);
|
||||||
GL11.glScalef(0.25F, 0.25F, 0.25F);
|
|
||||||
|
|
||||||
World world = tile.getWorld();
|
|
||||||
IBlockState state = world.getBlockState(tile.getPos());
|
|
||||||
|
|
||||||
switch(state.getValue(BlockHorizontal.FACING))
|
|
||||||
{
|
|
||||||
case NORTH:
|
|
||||||
rotation = 0;
|
|
||||||
//Left and Right
|
|
||||||
translateX = 1.5f;
|
|
||||||
//Back and Forth
|
|
||||||
translateZ = 1.05f;
|
|
||||||
break;
|
|
||||||
case EAST:
|
|
||||||
rotation = 3;
|
|
||||||
translateZ = 1.0f;
|
|
||||||
translateX = 1.4f;
|
|
||||||
break;
|
|
||||||
case SOUTH:
|
|
||||||
rotation = 2;
|
|
||||||
//Left and Right
|
|
||||||
translateX = 1.5f;
|
|
||||||
//Back and Forth
|
|
||||||
translateZ = 0.9f;
|
|
||||||
break;
|
|
||||||
case WEST:
|
|
||||||
rotation = 1;
|
|
||||||
//Back and Forth
|
|
||||||
translateX = 1.5f;
|
|
||||||
//Left and Right
|
|
||||||
translateZ = 1.0f;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
GL11.glTranslatef(-1.5F, -0.0F, -1.0F);
|
|
||||||
|
|
||||||
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE);
|
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.LOCATION_BLOCKS_TEXTURE);
|
||||||
float prevLGTX = OpenGlHelper.lastBrightnessX;
|
float prevLGTX = OpenGlHelper.lastBrightnessX;
|
||||||
@@ -83,39 +49,26 @@ public class TileFireboxRender extends TileEntitySpecialRenderer<TileFirebox>
|
|||||||
int bright = tile.getWorld().getCombinedLight(pos.up(), 0);
|
int bright = tile.getWorld().getCombinedLight(pos.up(), 0);
|
||||||
OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, bright % 65536, bright / 65536);
|
OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, bright % 65536, bright / 65536);
|
||||||
|
|
||||||
ItemStack stack = tile.getSlotStack(0);
|
ItemStack stack1 = tile.getSlotStack(0);
|
||||||
if (stack != null) {
|
|
||||||
boolean is_block = stack.getItem() instanceof ItemBlock;
|
|
||||||
float height = -0.75f;
|
|
||||||
|
|
||||||
float scale = is_block ? 0.9F : 1.6F;
|
boolean is_block = stack1.getItem() instanceof ItemBlock;
|
||||||
int stackSize = stack.getCount();
|
float scale = is_block ? 0.1725F : 0.5F;
|
||||||
|
double xTrans = is_block ? -1.6D : -0.45D;
|
||||||
|
double yTrans = is_block ? -1.26D : -0.25D;
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
if (!stack1.isEmpty()) {
|
||||||
GL11.glTranslatef(translateX, height, translateZ);
|
int stackRotation = stack1.getCount();
|
||||||
GL11.glScalef(scale, scale, scale);
|
for(int i = 0; i < Math.ceil(stackRotation/8) + 1; i++){
|
||||||
GL11.glRotatef(90.0F * rotation, 0.0F, 1.0F, 0.0F);
|
GL11.glPushMatrix();
|
||||||
Integer temp = tile.getSlotStack(0).getCount();
|
GL11.glScalef(scale, scale, scale);
|
||||||
|
GL11.glRotated(45.0F * i, 0.0F, 1.0F, 0.0F);
|
||||||
renderItem.renderItem(stack, renderItem.getItemModelMesher().getItemModel(stack));
|
GL11.glTranslated(xTrans, yTrans, 0.0D);
|
||||||
GL11.glRotatef(180F, 1.0F, 0.0F, 0.0F);
|
renderItem.renderItem(stack1, renderItem.getItemModelMesher().getItemModel(stack1));
|
||||||
//float scale = is_block ? 0.9F : 1.6F;
|
GL11.glPopMatrix();
|
||||||
if(is_block){
|
|
||||||
GL11.glScalef(0.08F,0.08F, 0.08f);
|
|
||||||
textZ = -23.0D;
|
|
||||||
} else {
|
|
||||||
GL11.glScalef(0.05F,0.05F, 0.05f);
|
|
||||||
textZ = -22.0D;
|
|
||||||
}
|
}
|
||||||
GL11.glTranslatef(0.0F, 2.0f, 0.0F);
|
|
||||||
GL11.glTranslated(0.0F, 0.0D, textZ);
|
|
||||||
getFontRenderer().drawString(temp.toString(), 0, 0, 4210752);
|
|
||||||
GL11.glPopMatrix();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, prevLGTX, prevLGTY);
|
OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, prevLGTX, prevLGTY);
|
||||||
|
|
||||||
GL11.glPopMatrix();
|
GL11.glPopMatrix();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
@@ -2,6 +2,8 @@ package nmd.primal.forgecraft.tiles;
|
|||||||
|
|
||||||
import net.minecraft.block.state.IBlockState;
|
import net.minecraft.block.state.IBlockState;
|
||||||
import net.minecraft.nbt.NBTTagCompound;
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
|
import net.minecraft.network.NetworkManager;
|
||||||
|
import net.minecraft.network.play.server.SPacketUpdateTileEntity;
|
||||||
import net.minecraft.tileentity.TileEntity;
|
import net.minecraft.tileentity.TileEntity;
|
||||||
import net.minecraft.tileentity.TileEntityLockable;
|
import net.minecraft.tileentity.TileEntityLockable;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
@@ -54,5 +56,22 @@ public abstract class BaseTile extends TileEntity {
|
|||||||
return nbt;
|
return nbt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ***************************************************************************** //
|
||||||
|
// Packets
|
||||||
|
// ***************************************************************************** //
|
||||||
|
@Override
|
||||||
|
public NBTTagCompound getUpdateTag()
|
||||||
|
{
|
||||||
|
return writeToNBT(new NBTTagCompound());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SPacketUpdateTileEntity getUpdatePacket() {
|
||||||
|
return new SPacketUpdateTileEntity(this.pos, 0, this.writeNBT(new NBTTagCompound()));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDataPacket(NetworkManager net, SPacketUpdateTileEntity packet) {
|
||||||
|
this.readNBT(packet.getNbtCompound());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ import net.minecraft.item.ItemStack;
|
|||||||
import net.minecraft.nbt.NBTTagCompound;
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
import net.minecraft.util.NonNullList;
|
import net.minecraft.util.NonNullList;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by mminaie on 12/25/16.
|
* Created by mminaie on 12/25/16.
|
||||||
*/
|
*/
|
||||||
@@ -47,6 +49,19 @@ public abstract class TileBaseSlot extends BaseTile {
|
|||||||
return ItemStackHelper.getAndSplit(this.getSlotList(), index, count);
|
return ItemStackHelper.getAndSplit(this.getSlotList(), index, count);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ItemStack incrementStackSize(List<ItemStack> stacks, int index, int count) {
|
||||||
|
Integer tempCount = ((ItemStack)stacks.get(index)).getCount();
|
||||||
|
ItemStack tempStack = ((ItemStack)stacks.get(index));
|
||||||
|
if(tempCount + count > 64) {
|
||||||
|
tempStack.setCount(64);
|
||||||
|
}
|
||||||
|
if(tempCount + count <= 64) {
|
||||||
|
tempStack.setCount(tempCount + count);
|
||||||
|
}
|
||||||
|
|
||||||
|
return tempStack;
|
||||||
|
}
|
||||||
|
|
||||||
// ***************************************************************************** //
|
// ***************************************************************************** //
|
||||||
// set
|
// set
|
||||||
//
|
//
|
||||||
@@ -62,16 +77,6 @@ public abstract class TileBaseSlot extends BaseTile {
|
|||||||
this.slotList.clear();
|
this.slotList.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
public boolean replaceStack(int index, ItemStack stack)
|
|
||||||
{
|
|
||||||
if (stack != null && stack.getCount() <= this.getSlotLimit()) {
|
|
||||||
this.setSlotStack(index, stack);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
} **/
|
|
||||||
|
|
||||||
// ***************************************************************************** //
|
// ***************************************************************************** //
|
||||||
// NBT
|
// NBT
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import net.minecraft.tileentity.TileEntity;
|
|||||||
import net.minecraft.tileentity.TileEntityFurnace;
|
import net.minecraft.tileentity.TileEntityFurnace;
|
||||||
import net.minecraft.util.EnumFacing;
|
import net.minecraft.util.EnumFacing;
|
||||||
import net.minecraft.util.ITickable;
|
import net.minecraft.util.ITickable;
|
||||||
|
import net.minecraft.util.NonNullList;
|
||||||
import net.minecraft.util.math.BlockPos;
|
import net.minecraft.util.math.BlockPos;
|
||||||
import net.minecraft.world.ILockableContainer;
|
import net.minecraft.world.ILockableContainer;
|
||||||
import net.minecraft.world.World;
|
import net.minecraft.world.World;
|
||||||
@@ -38,8 +39,9 @@ import static nmd.primal.forgecraft.CommonUtils.getVanillaItemBurnTime;
|
|||||||
*/
|
*/
|
||||||
public class TileFirebox extends TileBaseSlot implements ITickable {
|
public class TileFirebox extends TileBaseSlot implements ITickable {
|
||||||
|
|
||||||
private ItemStack[] inventory = new ItemStack [0];
|
private NonNullList<ItemStack> slotList = NonNullList.<ItemStack>withSize(1, ItemStack.EMPTY);
|
||||||
private String customName;
|
//private ItemStack[] inventory = new ItemStack [0];
|
||||||
|
//private String customName;
|
||||||
private int iteration = 0;
|
private int iteration = 0;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -58,26 +60,29 @@ public class TileFirebox extends TileBaseSlot implements ITickable {
|
|||||||
world.setBlockState(this.getPos(), state.withProperty(Firebox.ACTIVE, false), 2);
|
world.setBlockState(this.getPos(), state.withProperty(Firebox.ACTIVE, false), 2);
|
||||||
this.markDirty();
|
this.markDirty();
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
world.notifyBlockUpdate(pos, state, state, 2);
|
||||||
} else {
|
}
|
||||||
if(this.getSlotStack(0) != ItemStack.EMPTY) {
|
if(this.getSlotStack(0) != ItemStack.EMPTY) {
|
||||||
if (world.rand.nextInt((int) Math.floor(getVanillaItemBurnTime(this.getSlotStack(0)) / 20)) == 0) {
|
Integer decrInt = (int) Math.floor(getVanillaItemBurnTime(this.getSlotStack(0)) / 20);
|
||||||
this.decrStackSize(0, 1);
|
if(decrInt == 0) {
|
||||||
this.markDirty();
|
decrInt = 1;
|
||||||
world.notifyBlockUpdate(pos, state, state, 2);
|
}
|
||||||
}
|
if (world.rand.nextInt(decrInt) == 0) {
|
||||||
if(world.getBlockState(abovePos).getBlock() instanceof BlockFurnace){
|
this.decrStackSize(0, 1);
|
||||||
//System.out.println("Trying to set Block Furnace State active");
|
this.markDirty();
|
||||||
IBlockState iblockstate = world.getBlockState(abovePos);
|
this.updateBlock();
|
||||||
TileEntityFurnace tileFurnace = (TileEntityFurnace) world.getTileEntity(abovePos);
|
}
|
||||||
|
if(world.getBlockState(abovePos).getBlock() instanceof BlockFurnace){
|
||||||
|
//System.out.println("Trying to set Block Furnace State active");
|
||||||
|
IBlockState iblockstate = world.getBlockState(abovePos);
|
||||||
|
TileEntityFurnace tileFurnace = (TileEntityFurnace) world.getTileEntity(abovePos);
|
||||||
|
|
||||||
if(world.getBlockState(abovePos).getBlock() == Blocks.LIT_FURNACE){
|
if(world.getBlockState(abovePos).getBlock() == Blocks.LIT_FURNACE){
|
||||||
tileFurnace.setField(0,1000);
|
tileFurnace.setField(0,1000);
|
||||||
}
|
}
|
||||||
if(world.getBlockState(abovePos).getBlock() == Blocks.FURNACE){
|
if(world.getBlockState(abovePos).getBlock() == Blocks.FURNACE){
|
||||||
BlockFurnace.setState(true, world, abovePos);
|
BlockFurnace.setState(true, world, abovePos);
|
||||||
//world.setBlockState(abovePos, Blocks.LIT_FURNACE.getDefaultState().withProperty(FACING, iblockstate.getValue(FACING)), 3);
|
//world.setBlockState(abovePos, Blocks.LIT_FURNACE.getDefaultState().withProperty(FACING, iblockstate.getValue(FACING)), 3);
|
||||||
tileFurnace.setField(0,1000);
|
tileFurnace.setField(0,1000);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,238 +1,99 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"parent": "block/block",
|
|
||||||
"textures": {
|
"textures": {
|
||||||
"texture": "forgecraft:blocks/checker_test",
|
"particle": "forgecraft:blocks/brick",
|
||||||
"texture2": "forgecraft:blocks/firebox_racks",
|
"texture": "forgecraft:blocks/brick"
|
||||||
"firebox_leg": "forgecraft:blocks/firebox_legs",
|
|
||||||
"texture4": "forgecraft:blocks/brick"
|
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
"__comment": "Back",
|
"__comment": "Cube1",
|
||||||
"from": [ 0, 8, 0 ],
|
"from": [ 0, 0, 0 ],
|
||||||
"to": [ 16, 16, 2 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 14.5, 16, 16 ], "texture": "#texture4" },
|
|
||||||
"up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture4" },
|
|
||||||
"north": { "uv": [ 0, 0, 16, 8 ], "texture": "#texture4" },
|
|
||||||
"south": { "uv": [ 0, 0, 16, 8 ], "texture": "#texture4" },
|
|
||||||
"west": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
|
||||||
"east": { "uv": [ 14, 0, 16, 8 ], "texture": "#texture4" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Bot",
|
|
||||||
"from": [ 0, 5, 0 ],
|
|
||||||
"to": [ 16, 8, 16 ],
|
"to": [ 16, 8, 16 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture4" },
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
"north": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" },
|
"north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
"south": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" },
|
"south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" },
|
"west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" }
|
"east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "AirSideLeft",
|
"__comment": "Cube2",
|
||||||
"from": [ 0, 8, 2 ],
|
"from": [ 0, 8, 14 ],
|
||||||
"to": [ 2, 16, 16 ],
|
"to": [ 4, 12, 16 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture4" },
|
"down": { "uv": [ 0, 0, 4, 2 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 0, 2, 15 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 14, 4, 16 ], "texture": "#texture" },
|
||||||
"north": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"north": { "uv": [ 12, 4, 16, 8 ], "texture": "#texture" },
|
||||||
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4" },
|
"west": { "uv": [ 14, 4, 16, 8 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4" }
|
"east": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "AirSideRight",
|
"__comment": "Cube2",
|
||||||
"from": [ 14, 8, 2 ],
|
"from": [ 12, 8, 14 ],
|
||||||
|
"to": [ 16, 12, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 15, 4, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 4, 1 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 12, 4, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 4, 1, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 15, 4, 16, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 0, 8, 0 ],
|
||||||
|
"to": [ 2, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 2, 14 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 2, 2, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 14, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 2, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 2, 0, 16, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 14, 8, 0 ],
|
||||||
|
"to": [ 16, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 14, 2, 15 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 2, 2, 16 ], "texture": "#texture"},
|
||||||
|
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 2, 0, 16, 7 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube6",
|
||||||
|
"from": [ 0, 12, 14 ],
|
||||||
"to": [ 16, 16, 16 ],
|
"to": [ 16, 16, 16 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture4" },
|
"down": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 0, 2, 15 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture", "rotation": 90 },
|
||||||
"north": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"north": { "uv": [ 0, 3, 16, 7 ], "texture": "#texture" },
|
||||||
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"south": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4" },
|
"west": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4" }
|
"east": { "uv": [ 14, 0, 16, 4 ], "texture": "#texture" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "Front0",
|
"__comment": "Cube7",
|
||||||
"from": [ 2, 8, 14 ],
|
"from": [ 2, 8, 0 ],
|
||||||
"to": [ 4, 16, 16 ],
|
"to": [ 14, 16, 2 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture4" },
|
"down": { "uv": [ 2, 0, 14, 0 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 14, 2, 12 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 12, 14, 14.5 ], "texture": "#texture" },
|
||||||
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
"north": { "uv": [ 2, 0, 14, 8 ], "texture": "#texture" },
|
||||||
"south": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
"south": { "uv": [ 2, 0, 14, 8 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" }
|
"east": { "uv": [ 0, 0, 0, 8 ], "texture": "#texture" }
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Front1",
|
|
||||||
"from": [ 12, 8, 14 ],
|
|
||||||
"to": [ 14, 16, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture4" },
|
|
||||||
"up": { "uv": [ 0, 14, 2, 12 ], "texture": "#texture4" },
|
|
||||||
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
|
||||||
"south": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
|
||||||
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
|
||||||
"east": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Front2",
|
|
||||||
"from": [ 4, 13, 14 ],
|
|
||||||
"to": [ 12, 16, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 4, 5, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"up": { "uv": [ 4, 5, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"north": { "uv": [ 4, 4, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"south": { "uv": [ 4, 4, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"west": { "uv": [ 15, 0, 16, 4 ], "texture": "#texture" },
|
|
||||||
"east": { "uv": [ 0, 0, 1, 4 ], "texture": "#texture4" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder0",
|
|
||||||
"from": [ 6.5, 15, 2 ],
|
|
||||||
"to": [ 7.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 6.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg0",
|
|
||||||
"from": [ 12, 0, 0 ],
|
|
||||||
"to": [ 16, 5, 4 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg1",
|
|
||||||
"from": [ 0, 0, 12 ],
|
|
||||||
"to": [ 4, 5, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg2",
|
|
||||||
"from": [ 0, 0, 0 ],
|
|
||||||
"to": [ 4, 5, 4 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg3",
|
|
||||||
"from": [ 12, 0, 12 ],
|
|
||||||
"to": [ 16, 5, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder1",
|
|
||||||
"from": [ 10.5, 15, 2 ],
|
|
||||||
"to": [ 11.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 10.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder2",
|
|
||||||
"from": [ 12.5, 15, 2 ],
|
|
||||||
"to": [ 13.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 12.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder3",
|
|
||||||
"from": [ 2.5, 15, 2 ],
|
|
||||||
"to": [ 3.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 2.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder4",
|
|
||||||
"from": [ 4.5, 15, 2 ],
|
|
||||||
"to": [ 5.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 4.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder5",
|
|
||||||
"from": [ 8.5, 15, 2 ],
|
|
||||||
"to": [ 9.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 8.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,239 +1,99 @@
|
|||||||
{
|
{
|
||||||
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
"__comment": "Designed by Kitsushadow with Cubik Studio - https://cubik.studio",
|
||||||
"parent": "forgecraft:block/firebox",
|
|
||||||
"textures": {
|
"textures": {
|
||||||
"texture": "forgecraft:blocks/checker_test",
|
"texture": "forgecraft:blocks/brick",
|
||||||
"texture2": "forgecraft:blocks/firebox_racks",
|
"texture1": "forgecraft:blocks/brick_lit"
|
||||||
"firebox_leg": "forgecraft:blocks/firebox_legs",
|
|
||||||
"texture4": "forgecraft:blocks/brick",
|
|
||||||
"texture4_lit": "forgecraft:blocks/brick_lit"
|
|
||||||
},
|
},
|
||||||
"elements": [
|
"elements": [
|
||||||
{
|
{
|
||||||
"__comment": "Back",
|
"__comment": "Cube1",
|
||||||
"from": [ 0, 8, 0 ],
|
"from": [ 0, 0, 0 ],
|
||||||
"to": [ 16, 16, 2 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 14.5, 16, 16 ], "texture": "#texture4" },
|
|
||||||
"up": { "uv": [ 0, 0, 16, 2 ], "texture": "#texture4" },
|
|
||||||
"north": { "uv": [ 0, 0, 16, 8 ], "texture": "#texture4" },
|
|
||||||
"south": { "uv": [ 0, 0, 16, 8 ], "texture": "#texture4_lit" },
|
|
||||||
"west": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
|
||||||
"east": { "uv": [ 14, 0, 16, 8 ], "texture": "#texture4" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Bot",
|
|
||||||
"from": [ 0, 5, 0 ],
|
|
||||||
"to": [ 16, 8, 16 ],
|
"to": [ 16, 8, 16 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture4" },
|
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture4_lit" },
|
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" },
|
||||||
"north": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" },
|
"north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
"south": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" },
|
"south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" },
|
"west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 0, 8, 16, 11 ], "texture": "#texture4" }
|
"east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "AirSideLeft",
|
"__comment": "Cube2",
|
||||||
"from": [ 0, 8, 2 ],
|
"from": [ 0, 8, 14 ],
|
||||||
"to": [ 2, 16, 16 ],
|
"to": [ 4, 12, 16 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture4" },
|
"down": { "uv": [ 0, 0, 4, 2 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 0, 2, 15 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 14, 4, 16 ], "texture": "#texture" },
|
||||||
"north": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"north": { "uv": [ 12, 4, 16, 8 ], "texture": "#texture1" },
|
||||||
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4" },
|
"west": { "uv": [ 14, 4, 16, 8 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4_lit" }
|
"east": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "AirSideRight",
|
"__comment": "Cube2",
|
||||||
"from": [ 14, 8, 2 ],
|
"from": [ 12, 8, 14 ],
|
||||||
|
"to": [ 16, 12, 16 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 15, 4, 16 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 0, 4, 1 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture1" },
|
||||||
|
"south": { "uv": [ 0, 4, 4, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 0, 4, 1, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 15, 4, 16, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 0, 8, 0 ],
|
||||||
|
"to": [ 2, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 0, 2, 14 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 0, 2, 2, 16 ], "texture": "#texture" },
|
||||||
|
"north": { "uv": [ 14, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 2, 0, 16, 8 ], "texture": "#texture" },
|
||||||
|
"east": { "uv": [ 1, 4, 15, 12 ], "texture": "#texture1" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube4",
|
||||||
|
"from": [ 14, 8, 0 ],
|
||||||
|
"to": [ 16, 16, 14 ],
|
||||||
|
"faces": {
|
||||||
|
"down": { "uv": [ 0, 14, 2, 15 ], "texture": "#texture" },
|
||||||
|
"up": { "uv": [ 1, 1, 15, 3 ], "texture": "#texture", "rotation": 90 },
|
||||||
|
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
|
"south": { "uv": [ 0, 4, 2, 8 ], "texture": "#texture" },
|
||||||
|
"west": { "uv": [ 1, 4, 15, 11 ], "texture": "#texture1" },
|
||||||
|
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture" }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"__comment": "Cube6",
|
||||||
|
"from": [ 0, 12, 14 ],
|
||||||
"to": [ 16, 16, 16 ],
|
"to": [ 16, 16, 16 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture4" },
|
"down": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 0, 2, 15 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture", "rotation": 90 },
|
||||||
"north": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"north": { "uv": [ 0, 2, 16, 6 ], "texture": "#texture1" },
|
||||||
"south": { "uv": [ 0, 0, 2, 8 ], "texture": "#texture4" },
|
"south": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
|
||||||
"west": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4_lit" },
|
"west": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 0, 0, 14, 8 ], "texture": "#texture4" }
|
"east": { "uv": [ 14, 0, 16, 4 ], "texture": "#texture" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"__comment": "Front0",
|
"__comment": "Cube7",
|
||||||
"from": [ 2, 8, 14 ],
|
"from": [ 2, 8, 0 ],
|
||||||
"to": [ 4, 16, 16 ],
|
"to": [ 14, 16, 2 ],
|
||||||
"faces": {
|
"faces": {
|
||||||
"down": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture4" },
|
"down": { "uv": [ 2, 0, 14, 0 ], "texture": "#texture" },
|
||||||
"up": { "uv": [ 0, 14, 2, 12 ], "texture": "#texture4" },
|
"up": { "uv": [ 0, 12, 14, 14.5 ], "texture": "#texture" },
|
||||||
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
"north": { "uv": [ 2, 0, 14, 8 ], "texture": "#texture" },
|
||||||
"south": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
"south": { "uv": [ 2, 4, 14, 12 ], "texture": "#texture1" },
|
||||||
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture" },
|
||||||
"east": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4_lit" }
|
"east": { "uv": [ 0, 0, 0, 8 ], "texture": "#texture" }
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Front1",
|
|
||||||
"from": [ 12, 8, 14 ],
|
|
||||||
"to": [ 14, 16, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture4" },
|
|
||||||
"up": { "uv": [ 0, 14, 2, 12 ], "texture": "#texture4" },
|
|
||||||
"north": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
|
||||||
"south": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" },
|
|
||||||
"west": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4_lit" },
|
|
||||||
"east": { "uv": [ 13, 0, 15, 8 ], "texture": "#texture4" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Front2",
|
|
||||||
"from": [ 4, 13, 14 ],
|
|
||||||
"to": [ 12, 16, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 4, 5, 12, 7 ], "texture": "#texture4_lit" },
|
|
||||||
"up": { "uv": [ 4, 5, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"north": { "uv": [ 4, 4, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"south": { "uv": [ 4, 4, 12, 7 ], "texture": "#texture4" },
|
|
||||||
"west": { "uv": [ 15, 0, 16, 4 ], "texture": "#texture" },
|
|
||||||
"east": { "uv": [ 0, 0, 1, 4 ], "texture": "#texture4" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder0",
|
|
||||||
"from": [ 6.5, 15, 2 ],
|
|
||||||
"to": [ 7.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 6.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg0",
|
|
||||||
"from": [ 12, 0, 0 ],
|
|
||||||
"to": [ 16, 5, 4 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg1",
|
|
||||||
"from": [ 0, 0, 12 ],
|
|
||||||
"to": [ 4, 5, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg2",
|
|
||||||
"from": [ 0, 0, 0 ],
|
|
||||||
"to": [ 4, 5, 4 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Leg3",
|
|
||||||
"from": [ 12, 0, 12 ],
|
|
||||||
"to": [ 16, 5, 16 ],
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"up": { "uv": [ 0, 12, 4, 16 ], "texture": "#firebox_leg" },
|
|
||||||
"north": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"south": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"west": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" },
|
|
||||||
"east": { "uv": [ 0, 10.5, 4, 15.5 ], "texture": "#firebox_leg" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder1",
|
|
||||||
"from": [ 10.5, 15, 2 ],
|
|
||||||
"to": [ 11.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 10.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder2",
|
|
||||||
"from": [ 12.5, 15, 2 ],
|
|
||||||
"to": [ 13.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 12.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder3",
|
|
||||||
"from": [ 2.5, 15, 2 ],
|
|
||||||
"to": [ 3.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 2.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder4",
|
|
||||||
"from": [ 4.5, 15, 2 ],
|
|
||||||
"to": [ 5.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 4.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"__comment": "Holder5",
|
|
||||||
"from": [ 8.5, 15, 2 ],
|
|
||||||
"to": [ 9.3, 15.8, 14 ],
|
|
||||||
"rotation": { "origin": [ 8.5, 15, 2 ], "axis": "z", "angle": -45 },
|
|
||||||
"faces": {
|
|
||||||
"down": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"up": { "uv": [ 0, 0, 1, 12 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"north": { "uv": [ 0, 0, 1, 1 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"south": { "uv": [ 0, 16, 1, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"west": { "uv": [ 0, 16, 12, 15 ], "texture": "#texture2", "tintindex": 0 },
|
|
||||||
"east": { "uv": [ 16, 16, 4, 15 ], "texture": "#texture2", "tintindex": 0 }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,3 +1,44 @@
|
|||||||
{
|
{
|
||||||
"parent": "forgecraft:/block/firebox"
|
"forge_marker":1,
|
||||||
|
"textures": {
|
||||||
|
"particle": "forgecraft:blocks/brick",
|
||||||
|
"texture": "forgecraft:blocks/brick"
|
||||||
|
},
|
||||||
|
"parent": "forgecraft:block/firebox",
|
||||||
|
"display": {
|
||||||
|
"thirdperson_": {
|
||||||
|
"rotation": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"translation": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
0.1,
|
||||||
|
0.1,
|
||||||
|
0.1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"firstperson": {
|
||||||
|
"rotation": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"translation": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"scale": [
|
||||||
|
0.1,
|
||||||
|
0.1,
|
||||||
|
0.1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,3 +1,82 @@
|
|||||||
{
|
{
|
||||||
"503b4b59-0d6c-31d1-9440-529de2c14614": "Player57"
|
"503b4b59-0d6c-31d1-9440-529de2c14614": "Player57",
|
||||||
|
"6ef60f0d-ee89-3acd-9711-6e64aaf89fef": "Player707",
|
||||||
|
"d57d87cd-d04d-3cef-89d6-abaa1a1b0b56": "Player856",
|
||||||
|
"5606c356-f83a-3346-9cfd-7a4fa8e27776": "Player835",
|
||||||
|
"5b6052a7-6bab-33d6-92c2-a3d77755ef06": "Player430",
|
||||||
|
"752a0b44-017a-3fb3-b7fd-a355ab650513": "Player677",
|
||||||
|
"c5f2027d-c05b-3ad0-bbf1-20e3f4a553c8": "Player207",
|
||||||
|
"a2d3cb04-2e77-32ea-a568-7872ba7e9c5c": "Player46",
|
||||||
|
"fc1768ff-17ae-39e8-bef2-f3e0d98306ba": "Player660",
|
||||||
|
"c21e574d-957a-383a-949a-73e33ee66435": "Player639",
|
||||||
|
"664106cb-7687-35a3-9c4d-4c073a16c423": "Player45",
|
||||||
|
"80db04bb-566c-3ad4-b0e2-8e4330dc410b": "Player740",
|
||||||
|
"e7f0f282-ec78-3bba-aaaf-9edc548f540d": "Player689",
|
||||||
|
"baf6de3a-5bd7-32fc-ab9f-e6b63b25393f": "Player931",
|
||||||
|
"4a5060c2-513d-3571-8c5d-062b588e69ca": "Player266",
|
||||||
|
"0ecc5f64-1f20-34a1-a889-f88d84dd36f3": "Player936",
|
||||||
|
"3d9ab571-1ea5-360b-bc9d-77cd0b2f72a9": "Player288",
|
||||||
|
"92939c63-a7e1-358c-986e-33e314619bde": "Player606",
|
||||||
|
"92f8a523-1476-36c1-a74b-ef7c8b1d0bfd": "Player758",
|
||||||
|
"c98187a9-e17b-3f48-8a33-882e62d18d19": "Player250",
|
||||||
|
"e62c1c20-738a-32fb-af6c-c761d0c6e0d6": "Player215",
|
||||||
|
"b2d19156-5364-397f-8e33-abd769d6319d": "Player558",
|
||||||
|
"22dbc6e5-f5c0-33a5-9d21-617eb950afc0": "Player974",
|
||||||
|
"07621e04-f7a0-3030-986e-2083b375ff85": "Player313",
|
||||||
|
"6b0be7c5-d502-342b-9566-f3750127a843": "Player112",
|
||||||
|
"2b98548a-5e09-3029-b082-b4c99d31d926": "Player304",
|
||||||
|
"37196d8f-36df-357d-b90d-2af59c6852f6": "Player256",
|
||||||
|
"005a1bfb-b3e4-37aa-87e8-3ba2c8463cf4": "Player170",
|
||||||
|
"355b2127-0f2e-3f20-b6c2-8997b4abcafb": "Player425",
|
||||||
|
"16352087-2dde-32f0-819a-77046d6a13d3": "Player884",
|
||||||
|
"7ff3eb93-8be9-3a7d-9590-647acffcfb2b": "Player139",
|
||||||
|
"d75ffc85-72b0-3b94-be32-d104d89a3a6a": "Player953",
|
||||||
|
"7ef37f89-ec95-314c-ad83-8a71ac6e461c": "Player962",
|
||||||
|
"c2506432-c159-30c0-93d8-64f2a6272277": "Player540",
|
||||||
|
"19e1dbac-54cc-34fa-99b8-c2a0812b14c1": "Player676",
|
||||||
|
"f49b244f-2f6c-3574-ad7c-6686b5af67fc": "Player263",
|
||||||
|
"a6bafa0f-1b11-3eaa-b8e6-7e67117a081e": "Player99",
|
||||||
|
"2f0d3d8c-afbe-358f-b8f3-786d7b0f9259": "Player790",
|
||||||
|
"68723020-3c7d-332b-9007-b1f8c7a00304": "Player218",
|
||||||
|
"11e8c009-da15-3a5d-81f0-ba0017af511c": "Player114",
|
||||||
|
"76e88f6f-84ed-3a54-af33-5eec444b0454": "Player739",
|
||||||
|
"69715e5e-1775-3a6c-8b64-1d82bcbbe688": "Player508",
|
||||||
|
"fd4dff36-f6aa-35f9-8e99-ec749e44651e": "Player627",
|
||||||
|
"67c0771c-0b10-3f2c-b5d7-77726e52853d": "Player173",
|
||||||
|
"fc13d9f9-a806-3ae0-82c2-ce24ef162c15": "Player649",
|
||||||
|
"0b5a2d2c-03aa-39ec-afcb-3af64e25eb27": "Player927",
|
||||||
|
"77167de3-5df9-3c83-b06a-bed9a476e835": "Player320",
|
||||||
|
"19487181-3859-391a-bf75-143cc8396d12": "Player341",
|
||||||
|
"e4358028-bc3b-38cc-b645-4d08d3b4f456": "Player712",
|
||||||
|
"66157e7a-53e0-3299-9208-7674efd706f9": "Player210",
|
||||||
|
"cc8f980e-8ea7-381a-8715-01149d418cfb": "Player232",
|
||||||
|
"130bfefb-ac8d-3a05-b27c-6205f9d12a06": "Player570",
|
||||||
|
"2e2bbed4-8d1c-3b2c-8673-c561c520e4f2": "Player314",
|
||||||
|
"d1587dea-b047-3ee8-b46a-f3d599824159": "Player985",
|
||||||
|
"538c2a55-7afc-37c7-ab76-b8f0ee8467dd": "Player437",
|
||||||
|
"e7d801f5-83cd-3782-a52b-ae99232cd193": "Player749",
|
||||||
|
"7fef5833-06c9-398a-84c0-fbd3a81ff548": "Player602",
|
||||||
|
"f9567117-2555-3219-a3d6-01de0ddd7332": "Player7",
|
||||||
|
"24c19b83-c868-336d-a5c8-61e6dc8d3cd5": "Player435",
|
||||||
|
"f861b4cb-4ad2-3047-bede-1f92822d0050": "Player470",
|
||||||
|
"0e2ef6d7-b626-37a3-b614-05b4e8649bce": "Player550",
|
||||||
|
"2f4f52ff-0d3a-36b8-836b-d09e6352ef45": "Player896",
|
||||||
|
"dcba42c1-27a4-3c10-af01-648a8cbd49eb": "Player397",
|
||||||
|
"15798b51-9c30-3f35-8be6-3613cb7b02a9": "Player945",
|
||||||
|
"1b411c64-a8c2-3ec5-98f5-0b867e192819": "Player346",
|
||||||
|
"a205b8da-efc6-37ad-8e1d-84c0239cdd21": "Player889",
|
||||||
|
"09444461-95e8-3d4c-b4c8-61c0297ca18f": "Player929",
|
||||||
|
"9df70e84-3251-33fb-9047-d59112057246": "Player914",
|
||||||
|
"613fffc1-d252-35dc-8bd1-c9c1b7febbb1": "Player26",
|
||||||
|
"7c2fb32a-48f4-3632-92b4-de6db3581064": "Player168",
|
||||||
|
"8280f006-3f61-3ece-adfd-8952041aff70": "Player786",
|
||||||
|
"ca1bc45b-4820-318c-8fd3-5eba4f447561": "Player252",
|
||||||
|
"a63f2212-89e7-3508-92f3-b41a096e71fa": "Player10",
|
||||||
|
"de2b0524-f0fe-3ddf-9581-f7fcb562ed9e": "Player360",
|
||||||
|
"fb8576b0-fae6-3c1e-b44e-6422260d3c41": "Player813",
|
||||||
|
"fa57a584-be0c-37cc-aa91-b7d78367c493": "Player881",
|
||||||
|
"49b06ace-053b-361b-9d2b-2481cac53c1e": "Player868",
|
||||||
|
"8878ef4a-de27-32df-b636-12a0a607ca5d": "Player711",
|
||||||
|
"1e92cadb-e057-30f8-a789-5ce10551ba1e": "Player563",
|
||||||
|
"cd68c5ef-6a2a-334d-afe7-65c24468cb5c": "Player413"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user