Jump to content

[1.11.2 Solved] GuiButton over an other GuiButton + question aboute Note Blocks


Recommended Posts

Posted

Hi !

I'm currently "simulating" a Piano keyboard to modify a noteblock with a background image, where each key is a GuiButton, but when you press a the dark key on the top, both dark key button and white key button will be pressed, but I only want the dark one to be pressed. Explanation for those who didn't understand :

9904909d09.png

When I press on the red spot, only the button 1 is pressed. That works.

But when I press on the blue spot, both button 6 and button 5 are pressed, but I only want the button 6 to be pressed.

I'm using a custom button class that can differenciate if the key is white or black, but I'm stuck here.

This is what I've done so far :

package com.franckyi.editor.block.gui;

import java.io.IOException;

import com.franckyi.editor.block.BlockEditorMod;
import com.franckyi.editor.block.helper.BlockHelper;
import com.franckyi.editor.block.helper.EnumInstrument;
import com.franckyi.editor.ibe.gui.GuiEnumButton;
import com.franckyi.editor.ibe.gui.GuiUpdaterScreen;
import com.franckyi.editor.ibe.gui.GuiUtils;
import com.franckyi.editor.ibe.gui.GuiUtils.ButtonSize;
import com.franckyi.editor.ibe.gui.GuiZButton;

import net.minecraft.client.Minecraft;
import net.minecraft.client.audio.PositionedSoundRecord;
import net.minecraft.client.audio.SoundHandler;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.init.SoundEvents;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.SoundEvent;

public class GuiEditNoteBlock extends GuiUpdaterScreen {

private GuiEnumButton<Byte> instrumentButton;
private byte currentNote;
private GuiKeyButton[] keyButtons = new GuiKeyButton[26];
private final ButtonSize white = new ButtonSize(27, 100, 1);
private final ButtonSize black = new ButtonSize(19, 59, 2);
private int blackSpacing, firstX, y;

public GuiEditNoteBlock(Integer previousScreen, Object modInstance) {
	super(previousScreen, modInstance);
}

@Override
public void initGui() {
	blackSpacing = white.getWidth() - black.getWidth();
	firstX = (width - (14 * (black.getWidth() + blackSpacing) + black.getWidth())) / 2;
	y = (height - white.getHeight()) / 2;
	buttonList.add(doneButton = new GuiButton(30, width / 2 - 100, 3 * height / 4, 90, 20, "§2Done"));
	buttonList.add(cancelButton = new GuiButton(31, width / 2 + 10, 3 * height / 4, 90, 20, "§4Cancel"));
	buttonList.add(
			instrumentButton = new GuiEnumButton(32, width / 4, height / 8, 100, 20, "", EnumInstrument.class));
	instrumentButton.setValue(EnumInstrument.getDefaultValue());
	currentNote = BlockHelper.clientTileEntity.getTileData().getByte("note");
	buttonList.add(keyButtons[0] = new GuiKeyButton(0, firstX, y, black, "0"));
	buttonList.add(keyButtons[1] = new GuiKeyButton(1, firstX + black.getWidth() / 2, y, white, "1"));
	buttonList.add(keyButtons[2] = new GuiKeyButton(2, firstX + black.getWidth() + blackSpacing, y, black, "2"));
	buttonList.add(
			keyButtons[3] = new GuiKeyButton(3, firstX + white.getWidth() + black.getWidth() / 2, y, white, "3"));
	buttonList.add(
			keyButtons[4] = new GuiKeyButton(4, firstX + 2 * (black.getWidth() + blackSpacing), y, black, "4"));
	buttonList.add(keyButtons[5] = new GuiKeyButton(5, firstX + 2 * white.getWidth() + black.getWidth() / 2, y,
			white, "5"));
	buttonList.add(keyButtons[6] = new GuiKeyButton(6, firstX + 3 * white.getWidth() + black.getWidth() / 2, y,
			white, "6"));
	buttonList.add(
			keyButtons[7] = new GuiKeyButton(7, firstX + 4 * (black.getWidth() + blackSpacing), y, black, "7"));
	buttonList.add(keyButtons[8] = new GuiKeyButton(8, firstX + 4 * white.getWidth() + black.getWidth() / 2, y,
			white, "8"));
	buttonList.add(
			keyButtons[9] = new GuiKeyButton(9, firstX + 5 * (black.getWidth() + blackSpacing), y, black, "9"));
	buttonList.add(keyButtons[10] = new GuiKeyButton(10, firstX + 5 * white.getWidth() + black.getWidth() / 2, y,
			white, "10"));
	buttonList.add(keyButtons[11] = new GuiKeyButton(11, firstX + 6 * white.getWidth() + black.getWidth() / 2, y,
			white, "11"));
	buttonList.add(
			keyButtons[12] = new GuiKeyButton(12, firstX + 7 * (black.getWidth() + blackSpacing), y, black, "12"));
	buttonList.add(keyButtons[13] = new GuiKeyButton(13, firstX + 7 * white.getWidth() + black.getWidth() / 2, y,
			white, "13"));
	buttonList.add(
			keyButtons[14] = new GuiKeyButton(14, firstX + 8 * (black.getWidth() + blackSpacing), y, black, "14"));
	buttonList.add(keyButtons[15] = new GuiKeyButton(15, firstX + 8 * white.getWidth() + black.getWidth() / 2, y,
			white, "15"));
	buttonList.add(
			keyButtons[16] = new GuiKeyButton(16, firstX + 9 * (black.getWidth() + blackSpacing), y, black, "16"));
	buttonList.add(keyButtons[17] = new GuiKeyButton(17, firstX + 9 * white.getWidth() + black.getWidth() / 2, y,
			white, "17"));
	buttonList.add(keyButtons[18] = new GuiKeyButton(18, firstX + 10 * white.getWidth() + black.getWidth() / 2, y,
			white, "18"));
	buttonList.add(
			keyButtons[19] = new GuiKeyButton(19, firstX + 11 * (black.getWidth() + blackSpacing), y, black, "19"));
	buttonList.add(keyButtons[20] = new GuiKeyButton(20, firstX + 11 * white.getWidth() + black.getWidth() / 2, y,
			white, "20"));
	buttonList.add(
			keyButtons[21] = new GuiKeyButton(21, firstX + 12 * (black.getWidth() + blackSpacing), y, black, "21"));
	buttonList.add(keyButtons[22] = new GuiKeyButton(22, firstX + 12 * white.getWidth() + black.getWidth() / 2, y,
			white, "22"));
	buttonList.add(keyButtons[23] = new GuiKeyButton(23, firstX + 13 * white.getWidth() + black.getWidth() / 2, y,
			white, "23"));
	buttonList.add(
			keyButtons[24] = new GuiKeyButton(24, firstX + 14 * (black.getWidth() + blackSpacing), y, black, "24"));
	buttonList.add(keyButtons[25] = new GuiKeyButton(25, -100, -100, black, "")); // Used to remove a bug where the background changes color
}

@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
	super.drawScreen(mouseX, mouseY, partialTicks);
	super.drawString(fontRendererObj, "Current Note : " + currentNote, width / 2, height / 8 + 6, 0xffffff);
	mc.getTextureManager()
			.bindTexture(new ResourceLocation(BlockEditorMod.MODID, "textures/gui/noteblockkeyboard.png"));
	GuiUtils.drawModalRectWithCustomSizedTexture(keyButtons[0].xPosition - (black.getWidth() / 2 + blackSpacing),
			keyButtons[0].yPosition, 0, 0, 16 * (black.getWidth() + blackSpacing), 100,
			16 * (black.getWidth() + blackSpacing), 100, 3);
}

@Override
protected void actionPerformed(GuiButton button) throws IOException {
	for (GuiKeyButton key : keyButtons) {
		if (button == key){
			currentNote = (byte) key.keyNumber;
			playSound();
		}
	}
	super.actionPerformed(button);
}

@Override
protected void updateServer() {

}

private void playSound() {
	SoundHandler soundHandlerIn = Minecraft.getMinecraft().getSoundHandler();
	switch ((int) instrumentButton.getValue()) {
	case (0):
		soundHandlerIn.playSound(
				PositionedSoundRecord.getMasterRecord(SoundEvents.BLOCK_NOTE_HARP, getPitchFromNote(currentNote)));
		break;
	case (1):
		soundHandlerIn.playSound(
				PositionedSoundRecord.getMasterRecord(SoundEvents.BLOCK_NOTE_BASEDRUM, getPitchFromNote(currentNote)));
		break;
	case (2):
		soundHandlerIn.playSound(
				PositionedSoundRecord.getMasterRecord(SoundEvents.BLOCK_NOTE_SNARE, getPitchFromNote(currentNote)));
		break;
	case (3):
		soundHandlerIn.playSound(
				PositionedSoundRecord.getMasterRecord(SoundEvents.BLOCK_NOTE_HAT, getPitchFromNote(currentNote)));
		break;
	case (4):
		soundHandlerIn.playSound(
				PositionedSoundRecord.getMasterRecord(SoundEvents.BLOCK_NOTE_BASS, getPitchFromNote(currentNote)));
		break;
	default:
		;
	}
}

private float getPitchFromNote(int currentNote) {
	switch (currentNote) {
	case (0):
		return 0.5f;
	case (1):
		return 0.53f;
	case (2):
		return 0.6f;
	case (3):
		return 0.6f;
	case (4):
		return 0.63f;
	case (5):
		return 0.67f;
	case (6):
		return 0.7f;
	case (7):
		return 0.76f;
	case (:
		return 0.8f;
	case (9):
		return 0.84f;
	case (10):
		return 0.9f;
	case (11):
		return 0.94f;
	case (12):
		return 1f;
	case (13):
		return 1.06f;
	case (14):
		return 1.12f;
	case (15):
		return 1.18f;
	case (16):
		return 1.26f;
	case (17):
		return 1.34f;
	case (18):
		return 1.42f;
	case (19):
		return 1.5f;
	case (20):
		return 1.6f;
	case (21):
		return 1.68f;
	case (22):
		return 1.78f;
	case (23):
		return 1.88f;
	case (24):
		return 2f;
	default:
		return 0f;
	}
}

public class GuiKeyButton extends GuiZButton {

	private int keyNumber;
	private boolean isWhite;

	public GuiKeyButton(int buttonId, int x, int y, ButtonSize size, String buttonText) {
		super(buttonId, x, y, size, buttonText);
		keyNumber = buttonId;
		isWhite = size.getZLevel() == white.getZLevel();
	}

	@Override
	public void playPressSound(SoundHandler soundHandlerIn) { }
}

}

I'm using some custom classes here, so if also you want them, just tell me.

Posted

I would make a custom button class for the large keys (1,3,5,7 in your image) that only check the lower portion of their bounds for mouse-inside.  You wouldn't be able to click inside the narrow bits between the black keys, but it would prevent the double-press.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

I suppose you can't just make the white keys unpressable if a black key is pressed? I don't have any experience with GUIs, so I don't know if that's possible.

I'll put something here when I have something of value I need to put at the end of every post. For now it's this mostly pointless text.

Posted

Well, the problem is that they are pressed at the same time, so I can't disable a button if an other is pressed, because the button will be pressed anyway. I'll try but I'm really not sure it that will work.

Posted

I found a solution.

I overriden GuiButton::mousePressed in my custom button class and checked if the mouse position is or isn't on the white key, depending if the pressed key is white or black and also depending on the key number (because there are 3 different types of white keys, the n°1 isn't the same as the n°2 and both aren't the same as n°7).

With a lot of conditions, I managed it to be working.

 

Now, I have an other question. When the player opens the GUI, I want to display the current instrument and the current note.

I can get the current instrument by getting the block material below the noteblock and that works.

But I want to get the note played, and I'm using

currentNote = ((TileEntityNote) BlockHelper.clientTileEntity).note;

where

currentNote

is the variable I use to store the note,

and

BlockHelper.clientTileEntity

is set before the player opens the GUI with

BlockHelper.clientTileEntity = player.world.getTileEntity(rayTrace.getBlockPos());

where

player

is

Minecraft.getMinecraft().player

and

rayTrace

is

player.rayTrace(5, 1)

.

But that's not working, I always get 0. Can someone help me ?

Posted

The client does not know what note a note block is tuned to. Only the server knows.

 

I agree, this coulda' been good advice.

and or that coulda' too, that's alright.

 

Beck - where its at

is a good song too.

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • If you are using AMD/ATI, update your drivers - get the drivers from their website - do not update via system
    • Not sure why this is happening, but I would love some help. The reason I restarted the server was because I was getting an error while trying to join regarding this "Internal Exception: io.netty.handler.codec.DecoderException: io.netty.handler.codec.EncoderException: java.io.IOException: Root tag must be a named compound tag" Im using ServerMiner if thats any help
    • [13-05-2025 02:20:01]    |-- fabric-renderer-registries-v1 3.2.25+df3654b390 [13-05-2025 02:20:01]    |-- fabric-rendering-data-attachment-v1 0.3.19+6e0787e690 [13-05-2025 02:20:01]    |-- fabric-rendering-fluids-v1 3.0.11+4d0d570390 [13-05-2025 02:20:01]    |-- fabric-rendering-v0 1.1.28+df3654b390 [13-05-2025 02:20:01]    |-- fabric-rendering-v1 1.13.0+526f2c6790 [13-05-2025 02:20:01]    |-- fabric-resource-conditions-api-v1 2.1.2+aae9039d90 [13-05-2025 02:20:01]    |-- fabric-resource-loader-v0 0.8.4+edbdcddb90 [13-05-2025 02:20:01]    |-- fabric-screen-api-v1 1.0.32+4d0d570390 [13-05-2025 02:20:01]    |-- fabric-screen-handler-api-v1 1.3.8+1cc24b1b90 [13-05-2025 02:20:01]    |-- fabric-sound-api-v1 1.0.2+c4f28df590 [13-05-2025 02:20:01]    |-- fabric-textures-v0 1.0.24+aeb40ebe90 [13-05-2025 02:20:01]    |-- fabric-transfer-api-v1 2.1.6+413cbbc790 [13-05-2025 02:20:01]    \-- fabric-transitive-access-wideners-v1 1.3.3+08b73de490 [13-05-2025 02:20:01] - fabricloader 0.16.14 [13-05-2025 02:20:01]    \-- mixinextras 0.4.1 [13-05-2025 02:20:01] - geckolib3 3.1.40 [13-05-2025 02:20:01]    \-- com_eliotlash_mclib_mclib 20 [13-05-2025 02:20:01] - genesis 1.19.2-1.0.2 [13-05-2025 02:20:01] - grounded_origins 1.2.3 [13-05-2025 02:20:01]    \-- apugli 1.9.3+1.19-fabric [13-05-2025 02:20:01] - icarus 1.14.1 [13-05-2025 02:20:01] - identity 2.6.1-1.19.1 [13-05-2025 02:20:01]    \-- omega-config 1.2.3-1.18.1 [13-05-2025 02:20:01] - impaled 1.1.4 [13-05-2025 02:20:01] - itemfig 1.19.2-0.2.7-fabric [13-05-2025 02:20:01] - java 17 [13-05-2025 02:20:01] - journeymap 5.9.8 [13-05-2025 02:20:01]    \-- journeymap-api-fabric 1.19.1-1.9-fabric-SNAPSHOT [13-05-2025 02:20:01] - landchidori 1.0.3 [13-05-2025 02:20:01] - latoorigins 1.19.2-1.1.0 [13-05-2025 02:20:01] - lithium 0.11.1 [13-05-2025 02:20:01] - magic_origins v0.3.5 [13-05-2025 02:20:01] - medievalorigins 5.1.9.2+1.19.2 [13-05-2025 02:20:01]    |-- additionalentityattributes 1.4.0+1.19.2 [13-05-2025 02:20:01]    |-- common-protection-api 1.0.0 [13-05-2025 02:20:01]    \-- reach-entity-attributes 2.3.0 [13-05-2025 02:20:01] - midnightlib 1.0.0 [13-05-2025 02:20:01] - minecraft 1.19.2 [13-05-2025 02:20:01] - moborigins 1.10.0 [13-05-2025 02:20:01] - mrplaguewarper 1.0.8 [13-05-2025 02:20:01] - mythic 1.0.2 [13-05-2025 02:20:01] - mythorigins 1.19-0.2.0 [13-05-2025 02:20:01] - omnitrix_origins 1.0.0 [13-05-2025 02:20:01] - oneporigins 1.0 [13-05-2025 02:20:01] - origins 1.7.1 [13-05-2025 02:20:01]    |-- apoli 2.6.1 [13-05-2025 02:20:01]    |    |-- calio 1.7.0 [13-05-2025 02:20:01]    |    |-- cardinal-components-base 5.0.1 [13-05-2025 02:20:01]    |    |-- cardinal-components-entity 5.0.1 [13-05-2025 02:20:01]    |    |-- cloth-config 8.0.75 [13-05-2025 02:20:01]    |    |    \-- cloth-basic-math 0.6.1 [13-05-2025 02:20:01]    |    \-- playerabilitylib 1.6.0 [13-05-2025 02:20:01]    \-- reach-entity-attributes 2.3.0 [13-05-2025 02:20:01] - origins-plus-plus 2.3.1 [13-05-2025 02:20:01] - origins_4d_being 1.0.0 [13-05-2025 02:20:01] - origins_vampire_mr 1-v2.1.0 [13-05-2025 02:20:01] - originsumbrellas 1.5.4 [13-05-2025 02:20:01] - pehkui 3.8.3+1.14.4-1.21 [13-05-2025 02:20:01]    \-- kanos_config 0.4.1+1.14.4-1.19.4 [13-05-2025 02:20:01] - promans_origins 1.0.0 [13-05-2025 02:20:01] - rpg_origins 1.4.3 [13-05-2025 02:20:01] - sculkling 1.0.0 [13-05-2025 02:20:01] - seleni 0.2.5+1.19.2 [13-05-2025 02:20:01] - slimeorigin 2.0.2-1.19.2 [13-05-2025 02:20:01] - spilaioorigins 1.19-0.3.0 [13-05-2025 02:20:01] - thiccpackets 1.17-1.19+ [13-05-2025 02:20:01] - thorigins 4.2.0 [13-05-2025 02:20:01] - trinkets 3.4.2 [13-05-2025 02:20:01] - voidwalker 1.0.0 [13-05-2025 02:20:01] - yee 3.0.3 [13-05-2025 02:20:01] Found 1 non-fabric mod: [13-05-2025 02:20:01] - better_weapons-1.jar [13-05-2025 02:20:01] SpongePowered MIXIN Subsystem Version=0.8.7 Source=file:/home/smpicnic/server/data/libraries/net/fabricmc/sponge-mixin/0.15.5+mixin.0.8.7/sponge-mixin-0.15.5+mixin.0.8.7.jar Service=Knot/Fabric Env=SERVER [13-05-2025 02:20:01] Compatibility level set to JAVA_17 [13-05-2025 02:20:02] Loaded configuration file for Lithium: 114 options available, 0 override(s) found [13-05-2025 02:20:02] Error loading class: net/minecraft/class_998 (java.lang.ClassNotFoundException: net/minecraft/class_998) [13-05-2025 02:20:02] @Mixin target net.minecraft.class_998 was not found impaled.mixins.json:TridentRiptideFeatureRendererMixin from mod impaled [13-05-2025 02:20:02] Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1). [13-05-2025 02:20:03] Method overwrite conflict for revertScale in slimeorigin.mixins.json:MixinLivingEntity from mod slimeorigin, previously written by latokike.mythorigins.mixin.LivingEntityMixin. Skipping method. [13-05-2025 02:20:03] Added Config bclib.generator to auto sync (file hash) [13-05-2025 02:20:03] Added Config bclib.main to auto sync (content diff) [13-05-2025 02:20:03] Added Config bclib.recipes to auto sync (file hash) [13-05-2025 02:20:03] Added Config bclib.biomes to auto sync (file hash) [13-05-2025 02:20:04] Method overwrite conflict for damage in spilaioorigins.mixins.json:ItemStackMixin from mod spilaioorigins, previously written by latokike.latoorigins.mixin.ItemStackMixin. Skipping method. [13-05-2025 02:20:05] Building unoptimized datafixer [13-05-2025 02:20:05] Method overwrite conflict for method_6091 in moborigins.mixins.json:RavagerEntityMixin from mod moborigins, previously written by draylar.identity.mixin.RavagerEntityMixin. Skipping method. [13-05-2025 02:20:05] Minecraft has crashed! [13-05-2025 02:20:05] net.fabricmc.loader.impl.FormattedException: java.lang.NoSuchFieldError: ATTACK_DAMAGE_MODIFIER [13-05-2025 02:20:05] at net.fabricmc.loader.impl.FormattedException.ofLocalized(FormattedException.java:63) ~[fabric-loader-0.16.14.jar:?] [13-05-2025 02:20:05] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:482) ~[fabric-loader-0.16.14.jar:?] [13-05-2025 02:20:05] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) [fabric-loader-0.16.14.jar:?] [13-05-2025 02:20:05] at net.fabricmc.loader.impl.launch.knot.KnotServer.main(KnotServer.java:23) [fabric-loader-0.16.14.jar:?] [13-05-2025 02:20:05] at net.fabricmc.loader.impl.launch.server.FabricServerLauncher.main(FabricServerLauncher.java:69) [fabric-loader-0.16.14.jar:?] [13-05-2025 02:20:05] Caused by: java.lang.NoSuchFieldError: ATTACK_DAMAGE_MODIFIER [13-05-2025 02:20:05] at net.minecraft.class_1799.<clinit>(class_1799.java:126) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_1761.<init>(class_1761.java:114) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_1761$1.<init>(class_1761.java:15) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_1761.<clinit>(class_1761.java:15) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_1802.<clinit>(class_1802.java:22) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_1308$Anonymous$dedb2ce0fc304852b6ae6ea54fec0e73.<init>(DropSkullsMixins.java:23) ~[?:?] [13-05-2025 02:20:05] at net.minecraft.class_1308.<clinit>(class_1308.java:87) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_1299.<clinit>(class_1299.java:260) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_3103.<clinit>(class_3103.java:28) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_3031.<clinit>(class_3031.java:84) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_6800.<clinit>(class_6800.java:20) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_6803.method_39702(class_6803.java:24) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_5458.method_44104(class_5458.java:98) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_5458.method_30566(class_5458.java:105) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) ~[?:?] [13-05-2025 02:20:05] at net.minecraft.class_5458.<clinit>(class_5458.java:104) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_2378.<clinit>(class_2378.java:326) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.class_2966.method_12851(class_2966.java:50) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.minecraft.server.Main.main(Main.java:98) ~[server-intermediary.jar:?] [13-05-2025 02:20:05] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:480) ~[fabric-loader-0.16.14.jar:?] [13-05-2025 02:20:05] ... 3 more
    • Every time I try to run a modpack I am using, I get a crash error saying that it was caused by an invalid Java Runtime configuration. I have tried everything I can think of to try and debug it but nothing has worked. https://pastebin.com/ddxQTLh4
    • ok i tried to disable the last mod's i installed and it is some of then, so now im going to do the classic enable and disable trick to find out which mod cause the crash. thanks for the help  
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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