Forge Modded Server 1.12 closes after being open for a couple seconds
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
Pls help, I have selfmade modpack and I don't know what is wrong... Minecraft version: 1.19.2 forge: 43.3.0 tetra: 5.5.1 I already checked all the addons of tetra, they are not wrong, it is still crushing even when tetra don't have addons Latest log: https://github.com/Igitoro/tetra-crush/blob/main/latest.log Crash-report: https://github.com/Igitoro/tetra-crush/blob/main/crash-2023-09-24_11.33.47-fml.txt
-
By zombiebear99 · Posted
i only made changes to the things shown in tutorial ie. mod id and mod group -
It wasnt mappings issue, I was reading fabric and not forge. Fabric has PlayerEntity while forge has Player. Through a mixin I was able to change the player's velocity so that there is a sort of slow-motion type movement. Only issue is that jumping seems to be handled separately. Changing that velocity only makes the jump lower, not slower. Unsure how to increase the duration in which a jump happens. @Mixin(LivingEntity.class) public abstract class ExampleMixin extends Entity { public ExampleMixin(EntityType<?> type, World world) { super(type, world); } @Inject(method = "tickMovement", at = @At("HEAD")) private void onTickMovement(CallbackInfo ci) { // Access the player entity LivingEntity entity = (LivingEntity)(Object)this; // Modify player's acceleration by applying a force in the opposite direction double slowdownFactor = 0.75; // Adjust as needed entity.setVelocity(entity.getVelocity().multiply(1, slowdownFactor, 1)); } }
-
By Fablepandaroux · Posted
Hi so i made a modded survival, and when i go to the page 13 of my JEI, my game instant crash and give this error "The game crashed whilst rendering item Error", I don't know what to do i give you the crash report : https://pastebin.com/EhzYdEZg
-
-
Topics
Recommended Posts