Jump to content

warjort

Members
  • Posts

    5420
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by warjort

  1. You seem to have fixed the placebo problem? Your problem now is you have createaddition which wants a version 1.18-0.6.x but the version of flywheel is 0.6.5 with no "1.18-" You need to talk to the mod author about this.
  2. If it's your own item you can override IForgeItem.onEntityItemUpdate() for your item and do whatever you like. e.g. @Override public boolean onEntityItemUpdate(ItemStack stack, ItemEntity entity) { if (entity.isInWater()) { // Do stuff } return false; }
  3. Can you post your logs/debug.log so we can see what mods you actually have. It still says you have the wrong version of flywheel and placebo. This probably means you have mods that want conflicting versions of these mods. You also installed forge-40.1.68 which is not the latest version, 40.1.74, but I don't think that is causing this problem.
  4. You also have 3 mods that are not compatible with forge 40.1.59, you should try the latest version 40.1.74 And you are probably missing placebo or have a mod that wants a different version of placebo to what you have installed.
  5. Something is misconfigured. It is using 1.19 mod loader but with forge/minecraft 1.18 [23:49:58] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 1.18, --assetsDir, C:\Users\Nick\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 40.0.40, --fml.mcVersion, 1.18.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220404.173914, -mixin.config=reignofnether.mixins.json] [23:49:58] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.2 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0 How are you launching this? If it is from inside intellij check your launch configs to see if they make sense. You should also try reloading/importing the project into your ide to make it is not using old/cached information somewhere. If that fails, you will probably need to put your project on github so we can look at it in more detail.
  6. Mod File: /home/falxie_/.local/share/PolyMC/instances/Construct/.minecraft/mods/Chimes-1.1.2-1.18.2.jar Failure message: Chimes (chimes) has failed to load correctly java.lang.reflect.InvocationTargetException: null Mod Version: 1.1.2 Mod Issue URL: NOT PROVIDED Exception message: java.util.ConcurrentModificationException Stacktrace: at java.util.HashMap$HashIterator.nextNode(HashMap.java:1597) ~[?:?] {} at java.util.HashMap$EntryIterator.next(HashMap.java:1630) ~[?:?] {} at java.util.HashMap$EntryIterator.next(HashMap.java:1628) ~[?:?] {} at net.minecraftforge.common.ForgeConfigSpec.correct(ForgeConfigSpec.java:251) ~[forge-1.18.2-40.1.73-universal.jar%23214!/:?] {re:classloading} at net.minecraftforge.common.ForgeConfigSpec.isCorrect(ForgeConfigSpec.java:146) ~[forge-1.18.2-40.1.73-universal.jar%23214!/:?] {re:classloading} at net.minecraftforge.common.ForgeConfigSpec.setConfig(ForgeConfigSpec.java:83) ~[forge-1.18.2-40.1.73-universal.jar%23214!/:?] {re:classloading} at com.nick.chimes.client.ChimesSettings.<clinit>(ChimesSettings.java:34) ~[Chimes-1.1.2-1.18.2.jar%2388!/:1.0] {re:classloading} at com.nick.chimes.Chimes.<init>(Chimes.java:61) ~[Chimes-1.1.2-1.18.2.jar%2388!/:1.0] {re:classloading} Looks like an issue with chimes doing something strange with its config in its mod class initialisation. Check you have the latest version then contact the mod author.
  7. Posting your logs/debug.log might give more information?
  8. [09:52:57] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/YourMother/Desktop/modded/nstallserver/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2314!/ Service=ModLauncher Env=SERVER Exception in thread "main" java.io.UncheckedIOException: java.util.zip.ZipException: zip END header not found at [email protected]/cpw.mods.niofs.union.UnionFileSystem.openFileSystem(UnionFileSystem.java:59) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) at java.base/java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) at java.base/java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) at [email protected]/cpw.mods.niofs.union.UnionFileSystem.<init>(UnionFileSystem.java:52) at [email protected]/cpw.mods.niofs.union.UnionFileSystemProvider.newFileSystemInternal(UnionFileSystemProvider.java:115) at [email protected]/cpw.mods.niofs.union.UnionFileSystemProvider.newFileSystem(UnionFileSystemProvider.java:105) at [email protected]/cpw.mods.jarhandling.impl.Jar.<init>(Jar.java:75) at [email protected]/cpw.mods.jarhandling.SecureJar.from(SecureJar.java:58) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.moddiscovery.AbstractModLocator.createMod(AbstractModLocator.java:35) Looks like one of your mods wasn't downloaded correctly. The jar file is truncated/incomplete. Unfortunately, the error message doesn't say which one.
  9. https://forums.minecraftforge.net/topic/91712-supported-version-directory/
  10. If this is a user question: options -> controls -> mouse settings -> mouse sensitivity If this is a modding question: Minecraft.getInstance().options.sensitivity().set(.25d); NOTE: The real value is stored between 0.0 and 1.0, but displayed on screen as 0% to 200% so 0.25 = 50%
  11. For curseforge you need to enable the forge debug log in the minecraft settings.
  12. createdeco-1.2.9-1.18.2.jar |Create Deco |createdeco |1.2.9-1.18.2 |ERROR |Manifest: NOSIGNATURE Your problem is likely caused by createdeco not being up-to-date with the latest changes to create. https://www.curseforge.com/minecraft/mc-mods/create-deco?comment=128 But you will need to post a link to your logs/debug.log if you want us to confirm/find the real problem.
  13. The real solution is to fix your browser, e.g. clear your cookies/cache to remove broken information or uninstall/update broken browser plugins. But, on the download page click "show all versions". Next to the installer you want to download there is an "i" where you can see a direct download link.
  14. Isn't this just a case of returning OTHER_PROBLEM (which doesn't display a message)? But before you do that use player.displayClientMessage() to display whatever message you want.
  15. Download the latest optifine 1.18.2 preview. https://github.com/sp614x/optifine/issues/7009#issuecomment-1228057896
  16. That's what I said. I answered it because the problem is really a gradle (repository config) issue rather anything mixin specific.
  17. This is like walking into a shoe repair shop and asking if they can fix your glasses. ๐Ÿ™‚ These are the forge support forums, not mixin. Anyway, you appear to be missing the sponge/mixin maven from your repository configuration: - Plugin Repositories (could not resolve plugin artifact 'org.spongepowered.mixin:org.spongepowered.mixin.gradle.plugin:0.7.+') Searched in the following repositories: Gradle Central Plugin Repository maven(https://maven.minecraftforge.net/) e.g. https://github.com/VazkiiMods/Botania/blob/eae067be2c5df0cf89c4e978c3fa2c693580a120/Forge/build.gradle#L5
  18. No Magma is a fork of Forge. Forge doesn't have the patch that is in play here: https://git.magmafoundation.org/magmafoundation/Magma-1-18-x/-/blob/1.18.x/patches/minecraft/net/minecraft/world/level/block/grower/AbstractTreeGrower.java.patch#L24
  19. Other people have the same issue as you with Smart Farmers: https://www.curseforge.com/minecraft/mc-mods/smarter-farmers-farmers-replant/issues/9 You don't have the latest version of moonlight: https://www.curseforge.com/minecraft/mc-mods/selene/files/all?filter-game-version=2020709689%3A7498 But Smart Farmers hasn't been updated since June. https://www.curseforge.com/minecraft/mc-mods/smarter-farmers-farmers-replant/files You need to talk to the mod author.
  20. This isn't forge.
  21. Correct. It was also frustration at having to "spoon feed" every single line of code to the original poster. I am not sure how much of this feature they have actually written for themselves. ๐Ÿ™‚
  22. Sorry, but it's up to you manage your mods and read their documentation. If you can't do this yourself, use a modpack where somebody has already done this for you. This is the forge support forum. As a service we can you point to which mod causes a problem, but ultimately it's the mod author that must help you.
×
×
  • Create New...

Important Information

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