Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. F

    [1.6.4] Running Red v1.1.4 [Jam-Packed][Hardcore][Magic][RPG][Good as Crash Landing!]

    Just wanted to post here to give some kudos. Great job on the pack, although I will say wither fights are "interesting" with a skyblock setting. I finished the entire thing (1.1.4), and was even able to get a ME system up and running before completing the quests entirely. (Wood Farm >...
  2. F

    Direwolf20 1.7.10 released

    I found a minor bug that required cheating in some items - You cannot craft a cake in the 1.0.0 or 1.0.1 versions of the modpack. Something is interfering with the milk bucket recipe. It might be MFR, as "item:vanillaoverride:MilkBucket" is set to true.
  3. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    BTW, bad news - I can't get a working 1.6.4 build environment, so I can't build/test a fix for this. I'm hoping that the new era of gradle is one of magic unicorns and rainbows, because the slog I've just done trying to get 1.6.4 up and running was extrordinarily terrible. MCPC+ doesn't know...
  4. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    What's that you say? Sacred Rubber Sapling? Challenge accepted.
  5. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    It's probably shunting the blockPlace into a queue to process later. Aside from setting a mutex, your best bet is to detach the creation of the TileEntity in the block's constructor and do both of them whenever spread happens. It's either that or have a second way to pass the mimic block...
  6. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Jaded, I have no problem if you delete responses to the iridium problem, but can you update the known issues section of the first post to tell users about it?
  7. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Worldbuilder shouldn't muddy things - it simply chunkloads all of the chunks in an area to precompute the worldgen so it doesn't happen during player exploration. Loading a chunk from disk is faster than doing all of the mods' chunk generation routines in series.
  8. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Titanium? Slow down there, what does this look like, Mariculture city? (on a serious note, you're a testing machine - Excellent work. What does mcedit say wrt ore distribution?)
  9. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Keep trying harder! According to mistress Jadedcat, we haven't tried hard enough! /sarcasm (But seriously, that's a good exercise. Running one laser drill for a week is the same as running 14 for one day, probabilistically speaking. Your array of 96 is a real good indication that it is...
  10. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Just a curious correlary, did you find any netherEmerald or netherUranium? They also have BlocksPerGroup = 2. Thank you, this is an excellent data point. I hadn't considered pregenning the chunks with WorldBorder, but that's a really good stress test.
  11. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    I've uploaded the MFR logs and code change here to prove that it is impossible for the laser drill to work here: http://pastebin.com/nsqJu0a2 The first section of the pastebin is the insertion of logging code. Feel free to compare against the 2.7.9 snapshot here...
  12. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    I'm not sure what you're talking about, sorry. Minetweaker? If you're trying to set up a large parallel array of drills, go for it. You're trying to prove a negative, however, which means for you to be right there is no proper end to the test other than simulating the time lapse of a single...
  13. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    According to the config in ChickenChunks.cfg: #The number of minutes since last login within which chunks from a player will remain active, 0 for infinite. awayTimeout=5
  14. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    To risk being unsympathetic, can you please show your work? Can you show me in the code how the dustIridium resolves in the oredictionary? Can you show me how netherIridium and netherEmerald and netherUranium can spawn with a BlocksPerGroup set to 2 or less? I think that you're being mislead...
  15. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    I doubt that. I've put debug statements in the initialization code for the Laser Drill - it specifically can not generate in that manner. Unfortunately you're asking me to prove a negative, and that's not logically possible. I can set up 50 creative-powered laser drills and run them for weeks...
  16. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    There is no a furnace recipe for the ore. I just checked. The lack of dust recipe is what is causing the Laser Drill to not generate nether iridium in the current pack. Also, my results in this thread have shown (not proven) that it's probably impossible to generate any ore with a...
  17. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    I'm not too upset about it, honestly. She had a datapoint, she found it in her world (probably in generated nether chunks before she dropped iridium oregen down to the invalid "2" blocks per cluster setting), and figured we were all whining because it's so Haaard. My testing has proved that...
  18. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Well, I've got consistent results with regards to the nether ore generation, but I don't know what it means. If you take a look here: https://github.com/skyboy/NetherOres/blob/f2655916fc4ceead7c527696fbe83e8d6b77b351/src/powercrystals/netherores/world/WorldGenNetherOres.java#L65 You'll see at...
  19. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    It's beer ' o'clock for me right now, but after I sober up a bit I'll rebuild nether ores with some debugging in it to see what's going wrong with world gen. Remember: friends don't let friends debug drunk.
  20. F

    Unsupported Agrarian Skies: Hardcore Quest Bug Reporting

    Posting here because it is a bug in the modpack: I've successfully built MFR 2.7.9 with some debugging statements (GDI, skyboy, start linking to posted builds of PowerCrystalsCore instead of just -master...) The oreNetherIridium never gets added to the MFR laser registry. I've 100% confirmed...