Posted April 22, 20196 yr Hey guys, I've been trying for hours, using other's examples and such, and going through the source but I just can't figure out what's happening here. When I use my spawn egg I can hear what I assume is my entity walking around or swimming but I can not see it. I would greatly appreciate any help that could be given. Thanks https://github.com/BurntRouter/ATimeMod2/tree/dev
April 23, 20196 yr If you turn on hitboxes with F3+b can you see the entity’s hitbox? About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
April 23, 20196 yr Author 1 hour ago, Cadiboo said: If you turn on hitboxes with F3+b can you see the entity’s hitbox? Negative. Only sound.
April 23, 20196 yr https://github.com/BurntRouter/ATimeMod2/blob/dev/src/main/java/com/router/atimemod2/init/ModEntities.java#L22 I have seen many ways to access registries in my time on these forums, but this one is the best worst one yet I think. Don't do that. Registry entries must be instantinated in appropriate registry events and registered there. What you are doing here will never work. Also Quote ModEntities<T extends Entity> extends net.minecraftforge.registries.ForgeRegistryEntry<EntityType<?>> Why? Why would your registry event handler extend a registry entry? Edited April 23, 20196 yr by V0idWa1k3r
April 23, 20196 yr Author 15 hours ago, V0idWa1k3r said: https://github.com/BurntRouter/ATimeMod2/blob/dev/src/main/java/com/router/atimemod2/init/ModEntities.java#L22 I have seen many ways to access registries in my time on these forums, but this one is the best worst one yet I think. Don't do that. Registry entries must be instantinated in appropriate registry events and registered there. What you are doing here will never work. Also Why? Why would your registry event handler extend a registry entry? I hadn't slept for 3 days so yikes. I got it now. I'll be commiting the fix soon for anybody else that has this issue
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.