Jon Lentz

Results 12 comments of Jon Lentz

I have added breeds before and it's pretty simple even with my basic understanding of Java. My issue now is making it compatible with 1.11

This would be possible if the models were compatible with Custom NPCs. I can get mobs from most other mods to work, but never DragonMounts.

Yup, pretty sure it's a bug.

I think I found the issue. In EntityTameableDragon, getAltitude() (line 200) returns the distance from the world surface to the dragon. If the dragon is below any blocks, than the...

@ata4 @Avatair There is a method in "net.minecraft.world.World" called isAirBlock(BlockPos pos). Basically you could use this method in getAltitude() to check for the next non-air block below when getHeight() returns...

So I added this method to EntityTameableDragon public boolean willLand() { BlockPos pos = getPosition(); return !world.isAirBlock(pos.down()) || !world.isAirBlock(pos.down(2)); } And I changed this line in onLivingUpdate() boolean flying =...

I think I fixed a few things. In DragonMoveHelper:75, dragon.move(**MoverType.SELF**, dragon.motionX, dragon.motionY, dragon.motionZ); In BlockDragonBreedEgg:61, public void getSubBlocks is not an override method Same for protected void rotateCorpse in DragonRenderer:186...

Actually, I'm not 100% sure about the two override issues, but they did compile.

This may be the same problem as Issue #35.

No, VertexBuffer just changed locations. Still not sure what the RuntimeOptionGuiHandler issue is all about. I don't think any of DragonMountsConfigGuiFactory's dependencies changed for 1.12. Any insights, @ata4 ?