Update to MC 1.14.3

This commit is contained in:
Jonas Herzig
2019-06-24 18:17:51 +02:00
parent 1f547f92ce
commit 214da6ba59
22 changed files with 93 additions and 84 deletions

View File

@@ -63,13 +63,15 @@ net.minecraft.client.render.item.ItemRenderer colorMap itemColors
net.minecraft.client.render.item.ItemRenderer renderGlint() renderEffect()
net.minecraft.client.color.item.ItemColors net.minecraft.client.renderer.color.ItemColors
net.minecraft.client.color.item.ItemColors getColorMultiplier() getColor()
net.minecraft.item.ItemStack getName() getDisplayName()
net.minecraft.client.gui.Element net.minecraft.client.gui.IGuiEventListener
net.minecraft.network.chat.Component net.minecraft.util.text.ITextComponent
net.minecraft.network.chat.Component append() appendSibling()
net.minecraft.network.chat.Style net.minecraft.util.text.Style
net.minecraft.network.chat.TextComponent net.minecraft.util.text.TextComponentString
net.minecraft.network.chat.TranslatableComponent net.minecraft.util.text.TextComponentTranslation
net.minecraft.ChatFormat net.minecraft.util.text.TextFormatting
net.minecraft.text.Text net.minecraft.util.text.ITextComponent
net.minecraft.text.Text append() appendSibling()
net.minecraft.text.Text asFormattedString() getFormattedText()
net.minecraft.text.Style net.minecraft.util.text.Style
net.minecraft.text.LiteralText net.minecraft.util.text.TextComponentString
net.minecraft.text.TranslatableText net.minecraft.util.text.TextComponentTranslation
net.minecraft.util.Formatting net.minecraft.util.text.TextFormatting
net.minecraft.client.render.VisibleRegion net.minecraft.client.renderer.culling.ICamera
net.minecraft.client.render.entity.LivingEntityRenderer net.minecraft.client.renderer.entity.RenderLivingBase
net.minecraft.client.render.entity.LivingEntityRenderer method_4055() canRenderName()
@@ -454,7 +456,7 @@ net.minecraft.entity.Entity prevRenderY lastTickPosY
net.minecraft.entity.Entity prevRenderZ lastTickPosZ
net.minecraft.world.chunk.WorldChunk net.minecraft.world.chunk.Chunk
net.minecraft.world.chunk.WorldChunk getEntitySectionArray() getEntityLists()
net.minecraft.util.math.BoundingBox net.minecraft.util.math.AxisAlignedBB
net.minecraft.util.math.Box net.minecraft.util.math.AxisAlignedBB
net.minecraft.world.RayTraceContext net.minecraft.util.math.RayTraceResult
net.minecraft.entity.EquipmentSlot net.minecraft.inventory.EntityEquipmentSlot
net.minecraft.stat.StatHandler net.minecraft.stats.StatisticsManager

View File

@@ -211,16 +211,16 @@ def shadeExclusions = {
dependencies {
if (FABRIC) {
minecraft 'com.mojang:minecraft:' + [
11402: '1.14.2'
11403: '1.14.3',
][mcVersion]
mappings 'net.fabricmc:yarn:' + [
11402: '1.14.2+build.2'
11403: '1.14.3+build.1',
][mcVersion]
modCompile 'net.fabricmc:fabric-loader:' + [
11402: '0.4.8+build.154'
11403: '0.4.8+build.155',
][mcVersion]
modCompile 'net.fabricmc.fabric-api:fabric-api:' + [
11402: '0.3.0+build.170'
11403: '0.3.0+build.185',
][mcVersion]
}
@@ -256,7 +256,7 @@ dependencies {
def studioVersion = mcVersionStr
if (studioVersion == '1.8.9') studioVersion = '1.8'
shadow "com.github.ReplayMod.ReplayStudio:$studioVersion:e6f1a4b", shadeExclusions
shadow "com.github.ReplayMod.ReplayStudio:$studioVersion:8eeb9f5", shadeExclusions
shadowReobf(project(":jGui:$jGuiVersion")){
transitive = false // FG 1.2 puts all MC deps into the compile configuration and we don't want to shade those

View File

@@ -1 +1 @@
11402
11403