Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/05/21 in all areas

  1. https://github.com/BananaSquares/Forge-Mod/blob/master/src/main/java/mod/trianglesinpoo/mcores/ModSounds.java#L12 new SoundEvent(new ResourceLocation(Main.MODID, "music_disk/equilibrium.ogg") Just change it to something like: new SoundEvent(new ResourceLocation(Main.MODID, "equilibrium_disk") or just simply "equilibrium" as long as it is same as https://github.com/BananaSquares/Forge-Mod/blob/master/src/main/resources/assets/mcore/sounds.json#L2 You should really make the names more consistent.
    1 point
  2. Just add them after like so public class Straw extends Item { public Straw() { super(new Properties().tab(ItemGroupRegistry.sddMaterials).stackTo(1); } }
    1 point
  3. https://forums.minecraftforge.net/topic/92100-1163-ore-generation/ https://forums.minecraftforge.net/topic/99819-1165-ore-generation-not-working/?tab=comments#comment-450530 Just a quick search of the forums for ore generation
    1 point
  4. there is no LogBlock minecraft uses the RotatedPillarBlock look in the Blocks class how minecraft creates log blocks
    1 point
  5. no minecraft prefers java version 8, but forge works with forge java version 8 to 15
    1 point
×
×
  • Create New...

Important Information

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