Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/26/19 in all areas

  1. Biome Registry (Straight from Krevik's registry): https://github.com/SNGTech/Beneath-Mod/blob/master/src/main/java/com/sngtech/beneathMod/init/BiomeInit.java Biome Class: https://github.com/SNGTech/Beneath-Mod/blob/master/src/main/java/com/sngtech/beneathMod/world/biomes/AMPlainsBiome.java Hopefully this helps (May not be the correct way but it works for now)
    2 points
  2. Hello, i'm really new at minecraft modding but i know some java, i created a block chair and i want it to rotate when i place it, i mean, like stairs do in vanilla, i don't know how to look into vanilla code and i don't fing nothing searching, thanks for the help and sorry for probably sh*tt* question
    1 point
  3. Thank you so much, I've been trying to fix this for ages. It works! Such a nooby mistake.
    1 point
  4. Not sure but try to remove the space "axis=z, variant=baobab" to "axis=z,variant=baobab"
    1 point
  5. DamageIndicators is broken/poorly made
    1 point
  6. server-ip When left blank, it tries to listen to all available ips and the specified port. I know it is not recommended, but merely out of curiousity I wonder: I thought that if you wanted to set it to a specific ip, it needed to be a local ip, not the wide area network ip. Perhaps this is why the bind failed.
    1 point
  7. Were you following a tutorial or something? I'm seeing this more and more with people thinking they have to fill that in.
    1 point
  8. I've been working on updating my mod to 1.14, and for some reason my custom fence posts won't connect to each other, however they will connect to my custom fence gates. I have no idea why it's not working. Here's the code I use for the fence gate/post: PIER_FENCE = new FenceBlock(Block.Properties.create(Material.WOOD, Blocks.OAK_PLANKS.getMaterialColor(null, null, null)).hardnessAndResistance(2.0f, 5.0f)); PIER_FENCE_GATE = new FenceGateBlock(Block.Properties.create(Material.WOOD, Blocks.OAK_PLANKS.getMaterialColor(null, null, null))); I'm not sure, but it might be because the fence post (PIER_FENCE), isn't in the "fences" Block Tag? Any help would be useful :) SOLVED: Fixed this by adding a minecraft/tags/blocks/fences.json file to the data folder, and adding the block id to that file
    1 point
×
×
  • Create New...

Important Information

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