Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/22/17 in all areas

  1. This is happening for me as well. Not sure whats up. However I delete the forge load out I had and went to redownload it but the file.minecraftforge.net isn't loading either.... Not sure whats up
    1 point
  2. why cant i access the forge website it wont load the forge 1.8.9
    1 point
  3. The server is fine, it just depends on the route your packet fly to the server. OVH is working on fixing the problem. No ETA, they are doing what they can. I'll keep an eye on it and keep twitter updated.
    1 point
  4. I discuss priority a bit in my event handling tutorial: http://jabelarminecraft.blogspot.com/p/minecraft-forge-172-event-handling.html I believe if they have same priority they will fire in same order as the mods are loaded, but I haven't tested that. The idea of priority is also related to the cancellation of the events because the first mod that cancels the event I believe will prevent all later mods from getting the event. However, you can actually undo that by setting receive cancelled to true... So it really depends on what you're doing in the event. I personally tend to be "selfish" and set the priority to HIGHEST to make sure I get the event, but that is when I'm not doing anything that is likely to interfere with other mods and also not if I'm going to cancel it. If I'm going to cancel it, I'll go last but also set receive cancelled to true, since I believe most mods are intending to cancel the vanilla behavior when they cancel the event. In the end, events are definitely a place where mod conflicts can occur and if you have multiple mods and your event isn't firing like it normally does then you need to look at the priority and cancellation policies of your event and possibly work with the other mod's author to make them play nicely together.
    1 point
  5. Event handlers with the same priority are called in the order that they were registered in. This isn't documented, so it's probably best to consider it an implementation detail that shouldn't be relied upon.
    1 point
  6. Wrong. It should be Biome. Your advice is like saying "when you get a block, you want the variable to be Blocks." Biome is the object, Biomes is where the game holds a reference to each biome.
    1 point
  7. you can write to google to remove the webpage from search results
    1 point
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.