Jump to content

Recommended Posts

Posted

Not related to your issue, but this is dumb:

https://github.com/Merthew/MerthewMod/blob/master/main/java/merthew/mod/util/handlers/RegistryHandler.java#L31-L41

The whole notion of IHasModel is fucking stupid. ALL ITEMS NEED MODELS.

Secondly, you don't need to ask the item what it's model is, just call ModelLoader.setCustomModelResourceLocation(item, meta, resource_location) directly. There's no reason to ask the item itself to generate that information, as its all public and accessible from outside classes. There is nothing about this that requires that it be inside the item.

This pattern infuriates me as it was created by someone who didn't know what they were doing and has tossed it up as a "tutorial."

 

Then this:

https://github.com/Merthew/MerthewMod/blob/master/main/java/merthew/mod/objects/blocks/ModBlock.java#L23

Completely bypasses the whole notion that blocks do not necessarily have item forms (does the extended piston have an item? No it does not. Does cake? Not it does not). There's nothing wrong with giving your blocks items automatically, but by making your base block class's constructor do it, none of your block subclasses can prevent it.

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

Hey, thanks. I am still new to modding so just trying to play around with the code. Good to know that i don't have to use the interface.

 

The seven became one and the one became two.

Posted (edited)
15 minutes ago, Merthew said:

Hey, thanks. I am still new to modding so just trying to play around with the code. Good to know that i don't have to use the interface.

Nothing wrong with that either.

I just see that interface literally everywhere and it's pointless.

As a guide, 90% of the tutorials written for modding are written by new modders who haven't figured everything out yet, but they figured out this bit in a way that doesn't explode and so they write a tutorial.

 

Me? I liked the cleanliness of how 1.7's GameRegistry worked (from the perspective of using the class), in that it took 2 to 3 lines to register items and blocks, everything else "happened by magic." I.e. out of my sight and Just Worked. So I went about recreating that in 1.10 (and have since updated for 1.12).

 

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/EasyRegistry.java

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/client/ClientEasyRegistry.java

 

Acts as common/client proxy in a library mod (note 1). It's a little hard to follow just because there are several wrapper methods that just call another method. Could be refactored, but I was working outwards at the time. 1.12 also messed with things with the registry events, so all those methods end up just shoving data into an object and stuffing that into an array, which later gets referenced by the events.

 

And usage:

https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/farming/FarmingBase.java#L102-L128

 

Clean, simple, has all the options.

 

Note 1 A common proxy does not make sense 99.99% of the time. Even this could be refactored, but in this context, it makes sense to leave it.

Edited by Draco18s

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

The constructors for your tab items do not add your mod id to the items' Registry Names, I believe the result of this is that Minecraft is trying to find the models and textures for your items within its own resources. (Someone please correct me if I'm mistaken)

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Posted
1 hour ago, Merthew said:

That was intentional, i don't want the tab icons appearing as actual items.

That's not how that works.

 

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 did not want the TabIcon items appearing in the creative tab, so i set the creative tab in the constructor to null. However, the gem_darkshard, and the ingot_darkiron have the creative tab set to mainTab.

The seven became one and the one became two.

Posted

So?

Override getCreativeTabs and return null.

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
5 hours ago, Merthew said:

However, the gem_darkshard, and the ingot_darkiron have the creative tab set to mainTab.

I do not understand this.

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 want the gem_darkshard and the ingot_darkiron to be in the mainTab. In the code i have setCreativeTab(Main.mainTab) which is the same as the blockInit class. However, only the blocks are showing up in the creative tab.

The seven became one and the one became two.

Posted

You construct your items here:

https://github.com/Merthew/MerthewMod/blob/master/main/java/merthew/mod/init/ItemInit.java#L18

This immediate calls this:

https://github.com/Merthew/MerthewMod/blob/master/main/java/merthew/mod/objects/items/ModItem.java#L16

Which references this:

https://github.com/Merthew/MerthewMod/blob/master/main/java/merthew/mod/Main.java#L27

Which in turn references this:

https://github.com/Merthew/MerthewMod/blob/master/main/java/merthew/mod/init/ItemInit.java#L16

 

Your tabs haven't finished being created and assigned to your Main mod class's static fields by the time you construct your items, due to the use of static initializers.

 

In order for the JVM to construct your tab it first needs to construct all four items.

In order for the JVM to construct all four items, it first needs to get your constructed tabs.

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

Don't use static initializers.

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.

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

    • Erhalten Sie 100 € Rabatt mit dem Temu-Gutscheincode [acy240173] | + 30 % Rabatt Mit dem Code [acy240173] erhalten Sie einen Temu-Gutscheincode mit 100 € Rabatt. Dieser Temu-Gutscheincode mit 100 € Rabatt ist speziell für Neukunden und kann eingelöst werden, um 100 € Rabatt auf Ihren Einkauf zu erhalten. Unser exklusiver Temu-Gutscheincode bietet pauschal 100 € Rabatt auf Ihren Einkauf plus zusätzlich 30 % Rabatt. Als neuer Temu-Kunde können Sie mit dem Code [acy240173] die Preise um bis zu 70 % senken. Bestehende Benutzer können mit diesem Code 40 % Rabatt auf ihren nächsten Einkauf erhalten. Aber das ist noch nicht alles! Mit unseren Temu-Gutscheincodes für 2025 erhalten Sie bis zu 90 % Rabatt auf ausgewählte Artikel und Ausverkäufe. Egal, ob Sie Neukunde oder bestehender Käufer sind, unsere Temu-Codes bieten zusätzliche Rabatte, die speziell auf Sie zugeschnitten sind. Sparen Sie bis zu 30 % mit diesen aktuellen Temu-Gutscheinen [acy240173] für Januar 2025. Die neuesten Gutscheincodes von temu.com finden Sie hier. Kostenlose Temu-Codes 100 € Rabatt — [acy240173] Temu-Gutschein 100 € Rabatt — [acy240173] Temu-Gutschein 30 % Rabatt — [acy240173] Temu Memorial Day Sale 75 % Rabatt — [acy240173] Temu-Gutscheincode heute — [acy240173] Temu-Gratisgeschenkcode — [acy240173] (Ohne Einladung von Freunden oder Familienmitgliedern) Temu-Gutscheincode für Kanada – 30 % Rabatt — [acy240173] Temu-Gutscheincode Australien – 30 % Rabatt — [acy240173] Temu-Gutscheincode Neuseeland – 30 % Rabatt — [acy240173] Temu-Gutscheincode Japan – 30 % Rabatt — [acy240173] Temu-Gutscheincode Mexiko – 30 % Rabatt — [acy240173] Temu-Gutscheincode Chile – 30 % Rabatt – [acy240173] Temu-Gutscheincode Peru – 30 % Rabatt – [acy240173] Temu-Gutscheincode Kolumbien – 30 % Rabatt – [acy240173] Temu-Gutscheincode Malaysia – 30 % Rabatt – [acy240173] Temu-Gutscheincode Philippinen – 30 % Rabatt – [acy240173] Temu-Gutscheincode Südkorea – 30 % Rabatt – [acy240173] Lösen Sie den kostenlosen Temu-Gutscheincode [acy240173] für Erstnutzer ein Erhalten Sie mit dem Promo-Code „acy240173“ 100 € Rabatt auf Ihre Temu-Bestellung. Sie erhalten einen Rabatt, indem Sie auf den zu kaufenden Artikel klicken und diesen Temu-Gutscheincode 100 € Rabatt „[acy240173]“ eingeben. Temu-Gutscheincode [acy240173]: Bis zu 90 % Rabatt im Januar 2025 Suchen Sie nach den besten Temu-Gutscheincodes, um tolle Rabatte zu erhalten? Unsere Temu-Gutscheine sind perfekt, um die zusätzlichen Ersparnisse zu erzielen, nach denen Sie sich sehnen. Wir testen unsere Gutscheincodes für Temu regelmäßig, um sicherzustellen, dass sie einwandfrei funktionieren und Ihnen jedes Mal ein garantierter Rabatt gewährt wird. Temu-Gutschein für neue Benutzer [acy240173]: Bis zu 75 % Rabatt für Erstbenutzer Unsere Gutscheincodes für Temu-Erstbenutzer sind nur für Neukunden gedacht und bieten die größten Rabatte und die besten Angebote, die derzeit bei Temu verfügbar sind. Um Ihre Ersparnisse zu maximieren, laden Sie den Temu-Gutschein für 100 € Rabatt [acy240173] herunter: Erhalten Sie einen pauschalen Rabatt von 100 € auf den Bestellwert Machen Sie sich bereit, mit unserem unglaublichen Temu-Gutschein für 100 € Rabatt viel zu sparen! Unser fantastischer Temu-Gutscheincode für 100 € Rabatt gibt Ihnen einen pauschalen Rabatt von 100 € auf Ihren Bestellwert und macht Ihr Einkaufserlebnis noch lohnender. Temu-Gutscheincode für 40 % Rabatt [acy240173]: Für Neu- und Bestandskunden Unser unglaublicher Temu-Gutscheincode für 40 % Rabatt hilft Ihnen, bei Ihren Einkäufen viel zu sparen. Egal, ob Sie ein neuer Benutzer oder ein Bestandskunde sind, unser 40 % Rabattcode für Temu gibt Ihnen einen zusätzlichen Rabatt! Temu-Gutscheinpaket [acy240173]: Pauschal 100 € Rabatt + bis zu 70 % Rabatt Machen Sie sich bereit für ein unglaubliches Angebot mit unserem Temu-Gutscheinpaket für 2025! Unsere Temu-Gutscheinpakete geben Ihnen einen pauschalen Rabatt von 100 € und zusätzlich 40 % Rabatt. Kostenlose Temu-Gutscheine [acy240173]: Schalten Sie unbegrenzte Ersparnisse frei! Machen Sie sich bereit, mit unseren kostenlosen Temu-Gutscheinen eine Welt voller Ersparnisse zu erschließen! Wir bieten Ihnen eine große Auswahl an Temu-Gutscheincode-Optionen, mit denen Sie Ihr Einkaufserlebnis maximieren können. 30 % Rabatt auf Temu-Gutscheine, Promo-Codes + 25 % Cashback [acy240173] Temu-Gutscheincode einlösen [acy240173]. TEMU-GUTSCHEIN RM500OFF [acy240173] TEMU-GUTSCHEIN RM500OFF FÜR BESTEHENDE KUNDEN [acy240173] TEMU-GUTSCHEIN RM500OFF ERSTE BESTELLUNG [acy240173] TEMU-GUTSCHEIN RM500OFF FÜR BESTEHENDE KUNDEN KOSTENLOSER VERSAND USA [acy240173] TEMU-GUTSCHEIN RM500OFF WIE FUNKTIONIERT ES [acy240173] TEMU-GUTSCHEIN RM500OFF FÜR BESTEHENDE KUNDEN KANADA [acy240173] TEMU-GUTSCHEIN RM500OFF 2025 [acy240173] TEMU-GUTSCHEIN RM500OFF FÜR NEUKUNDEN [acy240173] TEMU-GUTSCHEIN RM500OFF KANADA [acy240173] TEMU-GUTSCHEIN RM500OFF FÜR BESTEHENDE KUNDEN ERSTE BESTELLEN [acy240173] TEMU 100 RABATT AUF COUPON-PAKET [acy240173] 100 COUPON-CODES [acy240173] 1 DOLLAR IN PHP [acy240173] GIBT ES EINEN COUPON AUF DEN PHILIPPINEN [acy240173] TEMU COUPON-CODE RM500OFF KOSTENLOSER VERSAND [acy240173] TEMU COUPON-CODES 100 PROZENT RABATT [acy240173] WAS IST EIN HOHER COUPON-PREIS [acy240173] WIE BERECHNET MAN DEN COUPON-PREIS OHNE COUPON-ZAHLUNG [acy240173] WAS IST DER COUPON-PREIS [acy240173] WIE BERECHNET MAN DEN COUPON-WERT [acy240173] NZ100€ Rabatt auf Ihren Einkauf, plus zusätzlich 30 % Rabatt. Als neuer Temu-Kunde können Sie mit dem Code [acy240173] die Preise um bis zu 70 % senken. Bestehende Benutzer erhalten mit demselben Code 40 % Rabatt auf ihren nächsten Einkauf. Aber das ist noch nicht alles! Mit unseren Temu-Gutscheincodes für 2025 erhalten Sie bis zu 90 % Rabatt auf ausgewählte Artikel und Ausverkäufe. Egal, ob Sie Neukunde oder Bestandskunde sind, unsere Temu-Codes bieten zusätzliche Rabatte, die speziell auf Sie zugeschnitten sind. Sparen Sie bis zu 30 % mit diesen aktuellen Temu-Gutscheinen [acy240173] Kostenlose Temu-Codes 100 € Rabatt — [acy240173] Temu-Gutschein 100 € Rabatt — [acy240173] Temu-Gutscheincode Malaysia – 30 % Rabatt — [acy240173] Temu-Gutscheincode Philippinen – 30 % Rabatt — [acy240173] Temu-Gutscheincode Südkorea – 30 % Rabatt — [acy240173] Kostenlosen Temu-Gutscheincode [acy240173] für Erstnutzer einlösen Erhalten Sie 100 € Rabatt auf Ihre Temu-Bestellung mit dem Promo-Code „acy240173“. Sie erhalten einen Rabatt, indem Sie auf den zu kaufenden Artikel klicken und diesen Temu-Gutscheincode 100 € Rabatt „[acy240173]“ eingeben. Temu-Gutschein für neue Benutzer [acy240173]: Bis zu 75 % Rabatt für Erstbenutzer Unsere Gutscheincodes für Temu-Erstbenutzer sind nur für Neukunden gedacht und bieten die größten Rabatte und die besten Angebote, die derzeit bei Temu verfügbar sind. Um Ihre Ersparnisse zu maximieren, laden Sie die Temu-App herunter und wenden Sie beim Bezahlvorgang unseren Temu-Gutschein für neue Benutzer an. Temu-Gutscheincodes für Bestandsbenutzer [acy240173]: 40 % Preisnachlass Kaufen Sie schon eine Weile bei Temu ein? Unser Temu-Gutschein für Bestandskunden belohnt Sie für Ihre anhaltende Unterstützung und bietet unglaubliche Rabatte auf Ihre Lieblingsprodukte. Temu-Gutschein für 100 € Rabatt [acy240173]: Erhalten Sie einen pauschalen Rabatt von 100 € auf den Bestellwert Machen Sie sich bereit, mit unserem unglaublichen Temu-Gutschein für 100 € Rabatt viel zu sparen! Unser fantastischer Temu-Gutscheincode für 100 € Rabatt gibt Ihnen einen pauschalen Rabatt von 100 € auf Ihren Bestellwert und macht Ihr Einkaufserlebnis noch lohnender. Temu-Gutscheincode für 40 % Rabatt [acy240173]: Für Neu- und Bestandskunden Mit unserem unglaublichen Temu-Gutscheincode für 40 % Rabatt können Sie bei Ihren Einkäufen richtig sparen. Egal, ob Sie ein neuer Benutzer oder ein Bestandskunde sind, unser 40 % Rabattcode für Temu verschafft Ihnen einen zusätzlichen Rabatt! Temu-Gutscheinpaket [acy240173]: Pauschal 100 € Rabatt + bis zu 70 % Rabatt Machen Sie sich bereit für ein unglaubliches Angebot mit unserem Temu-Gutscheinpaket für 2025! Unsere Temu-Gutscheinpakete gewähren Ihnen einen Pauschalrabatt von 100 € und zusätzlich 40 % Rabatt. Kostenlose Temu-Gutscheine [acy240173]: Schalten Sie unbegrenzte Ersparnisse frei! Machen Sie sich bereit, mit unseren kostenlosen Temu-Gutscheinen eine Welt voller Ersparnisse freizuschalten! Wir bieten Ihnen eine große Auswahl an Temu-Gutscheincodeoptionen, mit denen Sie Ihr Einkaufserlebnis maximieren können. 30 % Rabatt auf Temu-Gutscheine, Promo-Codes + 25 % Cashback [acy240173] Temu-Gutscheincode einlösen [acy240173] TEMU-GUTSCHEIN 100 € RABATT [acy240173] TEMU-GUTSCHEIN 100 € RABATT FÜR BESTEHENDE KUNDEN [acy240173] TEMU-GUTSCHEIN 100 € RABATT AUF DIE ERSTE BESTELLUNG [acy240173]      
    • Hello everyone. I am trying to set up a modded Minecraft server for version 1.20.1 but am running into an issue in which the server "freezes" during startup. The logs end at a certain point during startup, and no useful error messages are provided. Does anybody have any idea what might be happening? I am using a custom modlist.   Log File: https://api.mclo.gs/1/raw/eW4Nukg (There is an error message for "Quark", but it is not causing the issue I am having)
    • Hello everyone. I am trying to set up a modded Minecraft server for version 1.20.1 but am running into an issue in which the server "freezes" during startup. The logs end at a certain point during startup, and no useful error messages are provided. Does anybody have any idea what might be happening? I am using a custom modlist.   Log File: https://api.mclo.gs/1/raw/eW4Nukg (There is an error message for "Quark", but it is not causing the issue I am having)
    • bedbuewfbyirewibuewbufbiuewfbhiewbvuiwrv
    • System Info:     - OS: CachyOS x86_64 - (Arch based)     - Kernel: Linux 6.13.0-2-cachyos     - CPU: AMD Ryzen 5 7600X (12) @ 5.45 GHz     - GPU 1: NVIDIA GeForce RTX 4070 [Discrete]     - GPU 2: AMD Raphael [Integrated] Versions:     - openjdk 23.0.2 2025-01-21     - forge-1.21.4-54.0.21-installer.jar Log:     - forge-1.21.4-54.0.21-installer.jar.log Error: net/minecraft/world/ticks/package-info.class version.json Processor failed, invalid outputs: /home/ori/Desktop/Bots/Serverbot/MC_Worlds/ForgeTest/./libraries/net/minecraft/server/1.21.4/server-1.21.4-official.jar Expected: 0c21a12f2007a8243664e81cb1c353d94ed721a1 Actual: 0cf72b1d313f7cd54003e29428c02769068f25db There was an error during installation Regardless if I am installing client or server, it throws this error. I have tried changing my java version to java 18, tried different forge installer versions. I am out of ideas.
  • Topics

×
×
  • Create New...

Important Information

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