-
Posts
3284 -
Joined
-
Last visited
-
Days Won
62
Everything posted by ChampionAsh5357
-
partialTicks is a value between 0 and 1, so I believe you are just using it incorrectly. If you have the current position for this tick and the position of the last tick, you can use Mth#lerp to handle the lerping for you.
-
Seems to be a bunch of issue mods like tetra.
-
Don't do this. This is liable to break hundreds of mods. You should just replace the usage with a mixin injection whenever you need to do your specific logic. No, that's not it. It as to do with how you're reflecting the field. Forge uses SRG mappings during production, so the gameRenderer field is called something different. If you want to use reflection, you should use the ObfuscationReflectionHelper to handle this and provide the SRG name.
-
How to use method markDirty() in forge 1.19.3?
ChampionAsh5357 replied to DioxideCN's topic in Modder Support
Are you referring to how a chest determines whether the lid should be open? All that's been moved into separate classes like ContainerOpenersCounter and ChestLidController and is typically triggered through level events now.- 1 reply
-
- 1
-
The game crashed whilst rendering overlay
ChampionAsh5357 replied to RoboGames's topic in Support & Bug Reports
Try removing OptiFine; that tends to cause a lot of rendering issues. -
The debug.log in the logs folder in your game directory as a gist or paste preferably.
-
[1.18.2] Sync block inventory with item
ChampionAsh5357 replied to Daeruin's topic in Modder Support
Interesting, but whatever. I could just be misunderstanding how the loot table drops work there. So, it's not that the inventory is disappearing. How a block entity stores data and how the capability stores data on an item stack are different. As such, you can't read the itemstack data for the inventory unless you move it to the capability. So essentially, you would need to write the capability data to that on the itemstack. Then, on place, write it back to the block entity since it won't be in the tag to do it automatically. -
[1.19.2] Generate dimensions with code.
ChampionAsh5357 replied to Master_J's topic in Modder Support
Data Generators, there's a whole section on them in the docs and examples on the forge repo. -
Client crash after seconds of being in the server
ChampionAsh5357 replied to Dieguini223's topic in Support & Bug Reports
No, that would be unlikely. The most I can see is that there is something erroring with tetrapak's compat with JEI and patchouli's compat with Twilight Forest. You can try removing those mods (except JEI, that probably just works fine) and then adding each one back in to see where the error is most likely to occur. It could also be a missing dependency since I'm not familiar enough with the mods. -
It seems to be that it took too long to tick when saving the chunks. Unfortunately, this could be from a number of different things or even a combination of them, so it's unlikely to determine which mod(s) are at fault. I would recommend using a profiler like spark to figure out which mod is causing the large backup and then removing it, repeating the process until the serve is stable for a time period. Of course, you should start a new world each time to reproduce base conditions.
-
game crash when joining solo world
ChampionAsh5357 replied to hectorflac's topic in Support & Bug Reports
Try removing AE2-Things. -
Not much you can do. It just means that there is too much information being sent at once. If there is a mod that can break down the packets into smaller chunks and send them sequentially or remove the limit, that may work. Otherwise, you're just out of luck and the mod itself should manage its large quantity of data better.
-
Forge Server doesn't start (1.18.2)
ChampionAsh5357 replied to TheRealSteve9000's topic in Support & Bug Reports
You need to install the version and then add it to the PATH environment variable. It should do this automatically on install though if you check the configuration. -
Run the application such that its not tied to the current connection instance. There are plenty of tutorials on the internet on how to do this and numerous CLIs for it.
-
Mods fail to load correctly 1.16.5
ChampionAsh5357 replied to maxim.slime's topic in Support & Bug Reports
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.3 (Latest), 1.19.2, and 1.18.2 (LTS). -
The game crashed whilst rendering overlay
ChampionAsh5357 replied to superpro's topic in Support & Bug Reports
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.3 (Latest), 1.19.2, and 1.18.2 (LTS). -
cannot play minecraft 1.16.5 forge pixelmon
ChampionAsh5357 replied to jenish basnet's topic in Support & Bug Reports
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.3 (Latest), 1.19.2, and 1.18.2 (LTS). -
Use SavedData. If you want to store it per-world, only add it to the overworld level.
-
[1.18.2] Sync block inventory with item
ChampionAsh5357 replied to Daeruin's topic in Modder Support
That's strange. `#spawnAfterBreak` should be called before any states are set to properly drop the resources. Otherwise, things like the shulker box wouldn't work properly. Did you set a breakpoint to verify this? -
Error with mod Alex's mobs and Citadel
ChampionAsh5357 replied to Budebo3's topic in Support & Bug Reports
Might be an issue with citadel. Try removing it and see what happens.