Jump to content

ArianKG

Members
  • Posts

    24
  • Joined

  • Last visited

Recent Profile Visitors

1835 profile views

ArianKG's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  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 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
  11. @diesieben07 So, what is wrong with my code? What code should I change?
  12. @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()); } }
×
×
  • Create New...

Important Information

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