Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • ForgeGradle
  • [1.14.4] Gradle cannot download/resolve MCP mappings
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
Arcaeca

[1.14.4] Gradle cannot download/resolve MCP mappings

By Arcaeca, March 8, 2020 in ForgeGradle

  • Reply to this topic
  • Start new topic

Recommended Posts

Arcaeca    0

Arcaeca

Arcaeca    0

  • Tree Puncher
  • Arcaeca
  • Members
  • 0
  • 1 post
Posted March 8, 2020

So I just today realized the source in my Eclipse project is actually supposed to be human-readable and not 99% methods with the SRG names like func_177716_a, so I looked back in the build.gradle that the project was generated from, aaaaaaand whoops, I had accidentally commented out the MCP mappings line entirely, which probably explains that. So now I made a new folder in the Eclipse workspace folder and am trying to build the project clean from scratch again, but gradlew genEclipseRuns keeps terminating in under 30 seconds because it keeps failing to resolve the MCP mappings.

It's not working with stable 58:

minecraft {
	...	
	mappings = 'stable_58'
	...
}

Terminal output: https://pastebin.com/zvUMcjLN

And it's not working with the most recent 1.14.4 snapshot:

minecraft {
	...
	mappings = 'snapshot_20200119'
	...
}

Terminal output: https://pastebin.com/gkHe5vdw

So... if it can't download the stable release... and it can't download the snapshot... what does that leave me with if I'm modding for 1.14.4?

(This is my first time trying to make a mod by the way, so if other versions of stable/snapshot work for 1.14.4 I am not as yet aware of it)

build.gradle attached just in case.

build.gradle

  • Quote

Share this post


Link to post
Share on other sites

Ugdhar    232

Ugdhar

Ugdhar    232

  • World Shaper
  • Ugdhar
  • Members
  • 232
  • 2215 posts
Posted March 8, 2020

If you look at the line that is commented out:

Quote

// mappings channel: 'snapshot', version: '20190719-1.14.3'

 It shows you the format to use.

Comment out/delete the line(s) you added, uncomment that one, and just change the version to a newer version.

The last 1.14.4 version I see is mcp_snapshot-20200119-1.14.4

So change the "version: '20190719-1.14.3'" to "version: '20200119-1.14.4'" (but leave the channel: 'snapshot' there) and rerun your setup tasks, and you should be good to go.

  • Quote

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • Klarks
      [1.16.4] what difference between custom slots and EquipmentSlotType

      By Klarks · Posted just now

      Why i need cal super.getCapability? Is new EntityArmorInvWrapper(entity) doing same thing? LivingEntity. it returns handlers which are LazyOptional<IItemHandlerModifiable>[] and they contains same things what i have already created private final net.minecraftforge.common.util.LazyOptional<?>[] handlers = net.minecraftforge.items.wrapper.EntityEquipmentInvWrapper.create(this); public <T> net.minecraftforge.common.util.LazyOptional<T> getCapability(net.minecraftforge.common.capabilities.Capability<T> capability, @Nullable Direction facing) { if (this.isAlive() && capability == net.minecraftforge.items.CapabilityItemHandler.ITEM_HANDLER_CAPABILITY) { if (facing == null) return handlers[2].cast(); else if (facing.getAxis().isVertical()) return handlers[0].cast(); else if (facing.getAxis().isHorizontal()) return handlers[1].cast(); } return super.getCapability(capability, facing);   EntityEquipmentInvWrapper public static LazyOptional<IItemHandlerModifiable>[] create(LivingEntity entity) { @SuppressWarnings("unchecked") LazyOptional<IItemHandlerModifiable>[] ret = new LazyOptional[3]; ret[0] = LazyOptional.of(() -> new EntityHandsInvWrapper(entity)); ret[1] = LazyOptional.of(() -> new EntityArmorInvWrapper(entity)); ret[2] = LazyOptional.of(() -> new CombinedInvWrapper(ret[0].orElse(null), ret[1].orElse(null))); return ret; }
    • Klarks
      [1.16.4] what difference between custom slots and EquipmentSlotType

      By Klarks · Posted 11 minutes ago

      If super.getCapability give me the default handlers so what new EntityArmorInvWrapper(entity) do 
    • mightymoy
      Cant craft items in modded server

      By mightymoy · Posted 1 hour ago

      Me and my friends started a modded server the version is 1.16.1 and we have 23 mods installed on it. We were playing it in vanilla at first but then after some hours we started to add mods onto the server (not sure if this caused the issue) we noticed that somethings were not coming up in the crafting table output box for example I was trying to make a bowl but the bowl wasn't popping out to put it in my inventory we arent sure what's the issue since in single player we can craft both the modded items and vanilla items but in the server we cant craft them at all. I've been searching for a solution all day I cant seem to find anyone else talk about it or have a solution to it.    On the right is the modded server trying to craft a modded item but not showing and on the right is in single player mode doing the same thing and getting the item.   I would post the server log but I'm not sure how to get the log either if someone can tell me how to retrieve the log as well that would be much appreciated.
    • Draco18s
      What is the method to left click?

      By Draco18s · Posted 1 hour ago

      There isn't one. Documentation (such as there is) is all inside the code itself.
    • Gubipe
      What is the method to left click?

      By Gubipe · Posted 1 hour ago

      can you link me to the documentation page for it?
  • Topics

    • Klarks
      24
      [1.16.4] what difference between custom slots and EquipmentSlotType

      By Klarks
      Started 21 hours ago

    • mightymoy
      0
      Cant craft items in modded server

      By mightymoy
      Started 1 hour ago

    • Gubipe
      3
      What is the method to left click?

      By Gubipe
      Started 5 hours ago

    • schmiddi_0
      16
      Minecraft crashes while launching - failed to find service port for display

      By schmiddi_0
      Started December 14, 2020

    • Silivek
      1
      Mod won't load when in dev environment

      By Silivek
      Started 10 hours ago

  • Who's Online (See full list)

    • bananapizzuh
    • hijackster99
    • LenMay2003
    • Jake_Titan
    • imawindow
    • Otep
    • Gubipe
    • ChampionAsh5357
    • ZetaLuxray
    • Klarks
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • ForgeGradle
  • [1.14.4] Gradle cannot download/resolve MCP mappings
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community