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. S

    Code Snippets/Classes

    And to not be a total negative nancy: Utility: KeyHelper; detects shift/control with proper Mac support public class KeyHelper { public static boolean isCtrlKeyDown() { // prioritize CONTROL, but allow OPTION as well on Mac (note: GuiScreen's isCtrlKeyDown only checks for the OPTION...
  2. S

    Code Snippets/Classes

    I'd like to hear the justification for those formatting constants from the CoFH devs. I'm almost positive it'd be "that's how we did it a long time ago and we have just ignored it since." There's no benefit to not using EnumChatFormatting, and CoFH should probably fix that. Wrappers are fine...
  3. S

    Code Snippets/Classes

    It's literally the exact same thing. EnumChatFormatting.BLACK.toString().equals(StringHelper.BLACK) The only difference is that the EnumChatFormatting values aren't strings, so you can't concatenate them together directly, but that's easy to solve. // doesn't work EnumChatFormatting.BLACK +...
  4. S

    Code Snippets/Classes

    I've seen this elsewhere and I really don't understand the point. These exact constants exist in the Minecraft code as net.minecraft.util.EnumChatFormatting, which is both more robust (has utility functions like getTextWithoutFormattingCodes) and more future proof (even though it's probably...
  5. S

    Hardcore Modpacks and NAM

    Also, It's probably worth looking into/keeping an eye on KitchenCraft by @tterrag1098, which will allow you to add new foods (with accompanying seeds/crops) using json files. Not sure when it'll be released, though.
  6. S

    Hardcore Modpacks and NAM

    This exists in Hunger Overhaul but it is largely untested and completely undocumented. You can put json files in the config/HungerOverhaul/ directory with this format: [ { "name": "<mod>:<itemName>", "meta": <metadata>, "hunger": <hunger>, "saturationModifier"...
  7. S

    What's new in modded minecraft today?

    Hunger Overhaul updated to beta.2.
  8. S

    What's new in modded minecraft today?

    The Spice of Life updated to v1.2.1
  9. S

    IRC channels for mods

    I exist in #squeek
  10. S

    What's new in modded minecraft today?

    Annnnnd... Hunger Overhaul for 1.7.10 has been released. Requires AppleCore.
  11. S

    What's new in modded minecraft today?

    And... here... we... go. The Spice of Life updated to v1.2.0 (for 1.6.4/1.7.2/1.7.10). EDIT: Here's a quick demo video of the new food containers that were added. New mod: AppleCore (1.7.10 only). Note also that this is the API that will power the 1.7.10 version of Hunger Overhaul (soon to be...
  12. S

    What's new in modded minecraft today?

    A few tiny TiC Tooltips updates:
  13. S

    Blood N Bones [Hardcore Survival]

    If killing yourself to reset food history is a real problem, you could use food.history.persists.through.death=true :)
  14. S

    [1.7.10] AgriCraft

    No, Hunger Overhaul for 1.7.10 doesn't overwrite anything. It uses hooks added by AppleCore to cancel onUpdate calls, therefore delaying plant growth. There's not much you have to do to be compatible with Hunger Overhaul. Basically, it's Hunger Overhaul that'd need to add support for your mod...
  15. S

    Blood N Bones [Hardcore Survival]

    It doesn't do anything.
  16. S

    Best version for modding

    ForgeGradle exists for 1.6.4, but it's in v9.11.1.964 rather than v9.11.1.965 (don't ask me why).
  17. S

    What's new in modded minecraft today?

    @xbony2 / @Democretes, the news is that ChickenBones re-licensed all his mods under the MIT license. https://twitter.com/ChickenBones2/status/508868687323860992
  18. S

    Request Suggest mods for creation here

    Refined Relocation. Unsure if it has support for custom name filtering right now, but if it doesn't, suggest it and I'm sure it'll get implemented.
  19. S

    What's new in modded minecraft today?

    Updated Waila Harvestability to v1.1.0: Updated TiC Tooltips to v1.1.10:
  20. S

    Rotarycraft crashing with NEI

    This is without any other mods in the dev environment? I'm not sure how CCC could cause that error on it's own, as it doesn't seem to reference World in it's transformation of Block.canBeReplacedByLeaves (here's the instruction list it injects into Block.canBeReplacedByLeaves).