-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
Exception in thread "main" java.lang.ClassCastException
ChampionAsh5357 replied to stunni's topic in ForgeGradle
What Java version are you using and what Minecraft version? -
Unexpected bug each time using 'runClient'
ChampionAsh5357 replied to jasperagent's topic in ForgeGradle
You may need a different version of your graphics card, try update to the latest "Recommended WHQL" graphics drivers. Do not get the "Optional" one: https://www.amd.com/en/support -
can somebody help me? minecraft 1.18.2
ChampionAsh5357 replied to Abigabane's topic in Support & Bug Reports
Ok? Did you remove the mod I mentioned first? -
can somebody help me? minecraft 1.18.2
ChampionAsh5357 replied to Abigabane's topic in Support & Bug Reports
Likely an issue with archlight, so you might need to remove or find a version that works. -
Forge with Optifine 1.19.2 crash why?
ChampionAsh5357 replied to Toxxyistrash's topic in Support & Bug Reports
Missing mods that you need to install. Additionally, you need to update Forge to a later version. -
Entering Nether causes time out [Direwolf 1.19.2]
ChampionAsh5357 replied to playserver's topic in Support & Bug Reports
Please provide the logs via a pastebin or gist. We will not download random files from the internet onto our machines. -
my forge 44.1.23 and 44.1.0 keep crashing
ChampionAsh5357 replied to Noah Dickens's topic in Support & Bug Reports
Please provide the debug.log from the logs folder within the game directory via a gist or pastebin. -
OptiFine only works for specific versions of Forge which they outline on their website. However, a good number of mods that perform any kind of custom rendering will simply fail because OptiFine doesn't really care about mod compatibility. So, you'll likely have to rebuild your modpack with that in mind if you want to use it.
-
1.19.2 forge server issue, help would be appreciated.
ChampionAsh5357 replied to LayZ4ever's topic in Support & Bug Reports
It looks like you need to update Forge to a later version. -
Please provide the debug.log from the logs folder within the game directory via a pastebin or gist.
-
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS).
-
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS).
-
[1.19.2] Spawn Feature only in certain chunks
ChampionAsh5357 replied to fweo's topic in Modder Support
You're making a PlacementModifier correct? Regardless of what you choose to do with the feature, it will attempt to generate for every chunk. The placement modifier determines which block positions to apply your feature at within the chunk. So, if you return an empty stream, your feature won't be applied in the chunk. If you return a stream of one or more positions, it will attempt to apply the feature at those positions.- 1 reply
-
- 1
-
Unexpected bug each time using 'runClient'
ChampionAsh5357 replied to jasperagent's topic in ForgeGradle
Are you using an AMD graphics card? -
The version you are using is no longer supported on this forum. Please update to a modern version of Minecraft to receive support. Currently, supported versions are 1.19.4 (Latest) and 1.18.2 (LTS).
-
If you read your logs, it would be using Java 17. I assumed that you modified the JVM installation in the profile. However, it working indicates that you haven't, meaning you were just using the version of Java shipped with the client. I will reiterate that Minecraft 1.19 was compiled with Java 17, which means it will only be forward compatible with newer versions and crash on older versions with a class version error.
-
[1.19.2] Making a sound while right clicking
ChampionAsh5357 replied to Ribura's topic in Modder Support
You can look at `SpyglassItem` to see how it's implemented, but it's limited by the use duration. Additionally, you would probably need to manage this with packets. You make a sound manager on the client that works similar to how bee sounds work (see `BeeSoundInstance` for more details there).- 1 reply
-
- 1