Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ArianKG

Members
  • Joined

  • Last visited

  1. Then, modded structures will not work anymore.
  2. I did that, but nothing happened: package com.kg.kgforge.factory; import java.util.Optional; import net.minecraft.util.registry.Registry; import net.minecraft.world.biome.Biome; import net.minecraft.world.gen.ChunkGenerator; import net.minecraft.world.gen.DimensionSettings; import net.minecraft.world.gen.FlatChunkGenerator; import net.minecraft.world.gen.FlatGenerationSettings; import net.minecraft.world.gen.settings.DimensionStructuresSettings; import net.minecraftforge.common.world.ForgeWorldType; public class KGFactory implements ForgeWorldType.IChunkGeneratorFactory { @Override public ChunkGenerator createChunkGenerator(Registry<Biome> biomeRegistry, Registry<DimensionSettings> dimensionSettingsRegistry, long seed, String generatorSettings) { return new FlatChunkGenerator(new FlatGenerationSettings(new DimensionStructuresSettings(Optional.empty(), DimensionStructuresSettings.DEFAULTS), biomeRegistry)); } }
  3. @Luis_ST OK, the void isn't weird, but, the Nether structures in overworld is really weird, and I want to fix that.
  4. I mean, everything is void, and also, every structure from every dimension generated in overworld. For example, Nether structures generated in overworld.
  5. I tried to make a world generation, but results are really weird. GitHub repository: https://github.com/ArianKG/KGForge
  6. I want to make my own dimension, but even there is no `ForgeRegistries.DIMENSIONS`, and I have no idea how can I make my own dimension.
  7. @diesieben07 I just don't know what code should I change. Even after reading the things that you said I should change.
  8. @diesieben07 I mean, I can't understand what do you mean...
  9. @diesieben07 I don't know how can I fix this issues. Also, isn't the problem in entity rendering?
  10. I updated my codes. What is the problem now?
  11. I updated my codes. What is the problem now?
  12. @diesieben07 So, what code should I change?
  13. I tried to make an entity, but when I summon my entity, Minecraft crashes: https://gist.github.com/ArianKG/27288da1b8d670817711372a9e715d96 Source code: https://github.com/ArianKG/KGForge
  14. @diesieben07 So, what is wrong with my code? What code should I change?
  15. @diesieben07 What is the problem now? package com.kg.kgforge.c; import com.kg.kgforge.entity.KagoEntity; import net.minecraft.entity.EntityClassification; import net.minecraft.entity.EntityType; import net.minecraftforge.event.entity.EntityAttributeCreationEvent; public class CEntities { public static final EntityType<KagoEntity> KAGO = EntityType.Builder.of(KagoEntity::new, EntityClassification.MONSTER).sized(0.6F, 1.95F).clientTrackingRange(8).build("kago"); public static void registerAttributes(EntityAttributeCreationEvent event) { event.put(KAGO, KagoEntity.createAttributes().build()); } }

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.