1.14: Update to 1.14.4.
This commit is contained in:
parent
2b203abe0e
commit
749e5ac7e0
7 changed files with 19 additions and 17 deletions
|
@ -79,8 +79,8 @@ minecraft {
|
|||
|
||||
dependencies {
|
||||
minecraft "net.minecraftforge:forge:${version_forge_minecraft}"
|
||||
compileOnly fg.deobf("mezz.jei:jei-${version_minecraft}:${version_jei}:api")
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-${version_minecraft}:${version_jei}")
|
||||
compileOnly fg.deobf("mezz.jei:jei-${version_jei}:api")
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-${version_jei}")
|
||||
}
|
||||
|
||||
jar {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# @file gradle.properties
|
||||
org.gradle.daemon=false
|
||||
org.gradle.jvmargs=-Xmx8G
|
||||
version_minecraft=1.14.3
|
||||
version_forge_minecraft=1.14.4-28.0.2
|
||||
version_minecraft=1.14.4
|
||||
version_forge_minecraft=1.14.4-28.0.11
|
||||
version_fml_mappings=20190719-1.14.3
|
||||
version_jei=6.0.0.7
|
||||
version_jei=1.14.3:6.0.0.8
|
||||
version_engineersdecor=1.0.9-b8
|
||||
#
|
||||
# jar signing data loaded from signing.properties in the project root.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||
"1.14.3": {
|
||||
"1.14.4": {
|
||||
"1.0.9-b8": "[U] UPDATE TO 1.14.4. Forge 1.14.4-28.0.11/20190719-1.14.3.",
|
||||
"1.0.9-b7": "[U] Updated to Forge 1.14.3-27.0.60/20190719-1.14.3.\n[F] Disabled all early implemented fuild handling of valves and the Fluid Accumulator to prevent world loading hang-ups (issue #42, thx TheOhmegha for reporting). Will be re-enabled after fluid handling released in Forge.\n[F] Fixed blockstate model locations for signs and crafting table (issue #43, thx ProsperCraft for the beta test).",
|
||||
"1.0.9-b6": "[U] Updated to Forge 1.14.3-27.0.50/20190621-1.14.2.",
|
||||
"1.0.9-b5": "[A] Added missing recipes for slabs, stained clinker, half-slabs, valves.\n[M] Standalone recipes adapted.\n[F] Lang files: Fixed double newline escape.\n[A] Implicit opt-out of hard IE dependent blocks ported (e.g. Concrete Wall).\n[M] Basic mod config features, opt-outs and tweaks ported.",
|
||||
|
@ -16,7 +17,7 @@
|
|||
"1.0.7-b3": "[A] Initial 1.14.2 port of decorative blocks."
|
||||
},
|
||||
"promos": {
|
||||
"1.14.3-recommended": "",
|
||||
"1.14.3-latest": "1.0.9-b7"
|
||||
"1.14.4-recommended": "",
|
||||
"1.14.4-latest": "1.0.9-b8"
|
||||
}
|
||||
}
|
|
@ -10,7 +10,7 @@ Mod sources for Minecraft version 1.14.3.
|
|||
----
|
||||
## Version history
|
||||
|
||||
~ v1.0.9-b8 [U] UPDATE TO 1.14.4. Forge 1.14.4-28.0.2/20190719-1.14.3.
|
||||
- v1.0.9-b8 [U] UPDATE TO 1.14.4. Forge 1.14.4-28.0.11/20190719-1.14.3.
|
||||
|
||||
- v1.0.9-b7 [U] Updated to Forge 1.14.3-27.0.60/20190719-1.14.3.
|
||||
[F] Disabled all early implemented fuild handling of valves
|
||||
|
|
|
@ -539,7 +539,7 @@ public class ModContent
|
|||
|
||||
public static final EntityType<? extends Entity> ET_CHAIR = EntityType.Builder
|
||||
.create(BlockDecorChair.EntityChair::new, EntityClassification.MISC)
|
||||
.immuneToFire().size(1e-3f, 1e-3f)
|
||||
.immuneToFire().size(1e-3f, 1e-3f).disableSerialization()
|
||||
.setShouldReceiveVelocityUpdates(false).setUpdateInterval(4)
|
||||
.setCustomClientFactory(BlockDecorChair.EntityChair::customClientFactory)
|
||||
.build(new ResourceLocation(ModEngineersDecor.MODID, "et_chair").toString())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue