Forge Server wont let anyone other than host join
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By GoGoGoldfish · Posted
When I downloaded forge and installed the client version it didn't make a extension so I went to the extension tab and tried to find it but it wasn't there I tried to download previous versions of it but they don't make an extension if someone could help that would be nice! -
al instalar forge versión 1.18.2 (40.1.0) arroja un error: Failed to download version manifest, can not find client jar URL. que debería hacer?
-
By Yekaterinna · Posted
I can now!!!! Thank you so much! I did what you say of putting more time to join and i delete cache (just in case) and i can now, thank you so much 😭 -
Here's my solution, based on entity.isColliding(). You can just pass your block's VoxelShape in as shape; this block is directional so it needs a reference to the map. This method returns 'true' if the hitbox of the entity in question intersects the provided shape, in this case the shape of a non-colliding block. private boolean isColliding(BlockPos pos, BlockState state, Entity entity) { VoxelShape shape = SHAPE_MAP.get(state.getValue(FACING)); VoxelShape positionedShape = shape.move((double)pos.getX(), (double)pos.getY(), (double)pos.getZ()); return Shapes.joinIsNotEmpty(positionedShape, Shapes.create(entity.getBoundingBox()), BooleanOp.AND); }
-
-
Topics
-
Who's Online (See full list)
Recommended Posts
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.