Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/07/23 in all areas

  1. Looks like an issue with canary. Check you have the latest version then contact the mod author.
    1 point
  2. Not really my area of expertise, but that value is the calculated lighting value of your block. Your crucible has noOcclusion which allows light to pass through it: https://github.com/NovaMachina-Mods/ExNihiloSequentia/blob/cb9490413242e4480551433299127e9066243a7a/src/main/java/novamachina/exnihilosequentia/common/block/crucibles/WoodCrucibleBlock.java#L24 Your barrel does not: https://github.com/NovaMachina-Mods/ExNihiloSequentia/blob/cb9490413242e4480551433299127e9066243a7a/src/main/java/novamachina/exnihilosequentia/common/block/barrels/WoodBarrelBlock.java#L23 so it is probably not letting light into your block according to the shape? Look at how ModelBlockRenderer.tesselateWithoutAO uses LevelRenderer.getLightColor() of the neighbouring block/side as the light level when light cannot enter the block.
    1 point
  3. The error says you are missing or have the wrong version of geckolib for allthemodium. Check you have the latest versions then contact the mod authors.
    1 point
  4. I think you meant to extend a class further down than LivingEntity (probably at least Mob?), there's a lot of classes in the inheritance line between LivingEntity and most vanilla mobs. Eg. a zombie: LivingEntity -> Mob -> PathfinderMob -> Monster -> Zombie
    1 point
  5. It never ceases to amaze me how people overrate our psychic abilities. 🙂 I downloaded and ran the mod for myself. The relevant error in the log you don't show is: I've never seen that error before. But since minecraft:pig is minecraft's way of saying "not found" for entity types there must be something wrong with your EntityType registration. After some headscratching I noticed you are doing it twice. https://github.com/Coldthunder4/AGuardMod/blob/2065bd6cfeffff3cf099a3fb21c3fa504c29f5f0/src/main/java/net/coldthunder4/cellguard/CellGuard.java#L30 https://github.com/Coldthunder4/AGuardMod/blob/2065bd6cfeffff3cf099a3fb21c3fa504c29f5f0/src/main/java/net/coldthunder4/cellguard/CellGuard.java#L36
    1 point
  6. Maybe this problem? https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102
    1 point
  7. If it's your block you can override IForgeBlock.getCloneItemStack() For other people's blocks you would need to listen to the InteractionKeyMappingTriggered event and do the processing yourself. See Minecraft.pickBlock() for the default processing. This is usually the kind of thing that leads to incompatibilies with other mods trying to do the same thing.
    1 point
×
×
  • Create New...

Important Information

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