Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Callan2256

Callan2256

Members
 View Profile  See their activity
  • Content Count

    2
  • Joined

    April 15, 2020
  • Last visited

    April 16, 2020

Community Reputation

0 Neutral

About Callan2256

  • Rank
    Tree Puncher
  1. Callan2256

    [1.15.2] Disabling Clouds

    Callan2256 replied to Callan2256's topic in Modder Support

    Managed to get it working. Code posted below should anyone come across this issue in the future, please note that the code is janky as hell as a result with how unfamiliar I am with forge. (So if you have any recommendations on where I can improve it feel free to let me know) @SubscribeEvent public void cloudRemover(TickEvent.PlayerTickEvent event) { PlayerEntity p = event.player; Biome biome = p.world.func_226691_t_(p.getPosition()); String biomeName = biome.getTranslationKey(); GameSettings settings = Minecraft.getInstance().gameSettings; if (biomeName.contains("desert")) { settings.cloudOption = CloudOption.OFF; } else { settings.cloudOption = CloudOption.FANCY; } }
    • April 15, 2020
    • 4 replies
  2. Callan2256

    [1.15.2] Disabling Clouds

    Callan2256 posted a topic in Modder Support

    Hey guys, Pretty simple question, im trying to get the game to disable clouds when you enter a desert biome, I have the first half of that equation sorted but cant quite figure out how to disable the clouds (If its even possible!) Im new to forge and the complete lack of comprehensive documentation isn't a great help haha. Any help appreciated! Cheers
    • April 15, 2020
    • 4 replies
  • All Activity
  • Home
  • Callan2256
  • Theme

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