Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Luis_ST

Members
  • Joined

  • Last visited

Everything posted by Luis_ST

  1. If you run the installer, the installer log will be generate next to it (same folder). Please post this file, it is existential to help you.
  2. The past does not exists
  3. Please post debug.log from the logs folder.
  4. Create the BiomeModifier json how it's description in the Doc i linked above, then update your Git repo and the logs.
  5. You can try OptiFine HD U H9 pre4, but the version is not compatible with Forge 41.1.0. So this could lead problems.
  6. Problem with Advanced Compass. Make sure you are using the latest version. If the Mod is already up to date, report this bug to the Mod author.
  7. Remove Rubidium from the server, it's a badly coded client side Mod. I also would recommend to not use magic performance Mods like Rubidium. Since the mostly increase the performance due breaking game mechanics, which could lead problem with other Mods.
  8. I would recommend you to take a look at this Doc, it's official from Forge and it explains how you create a valid BiomeModifier. If you don't want to create your own you can take a look at the Builtin Modifier Types
  9. if this is your path to java 17 the run.bat file should look like this: // here should be the "@echo off" line and the "REM" lines "C:\Program Files\Java\jdk-17.0.4\bin\java.exe" @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.19-41.0.61/win_args.txt %* pause
  10. your BiomeModifier json file is invalid, how did you create this BiomeModifier json file? Do you register a BiomeModifier Codec somewhere?
  11. Then you do not start the server with java 17. Replace the java keyword in the run.bat file with the full path of the java 17 executable (java.exe). If the path contains a space you need to put it into quotes.
  12. Minecraft 1.18 requires java 17
  13. What's this issue? Post debug.log from server, if there is no debug.log run the server from the command line and post full output. This is the only info i get from the log, are you sure the Mod versions from server and client match?
  14. Post debug.log from server and client.
  15. Correct, it's also useful to include your mod is into the property
  16. As far as i know that's not possible with Events
  17. Are you sure it is the full debug.log from the logs folder, since the log does not contains any error which cause the game to crash. If this is the full debug.log please post launcher_log.txt as well.
  18. You need to register the blocking ItemProperty for your custom ShieldItem in FMLClientSetupEvent in enqueueWork, you can take a look at the ItemProperties class to use the vanilla blocking ItemProperty as an example. Do you have a json model for your Shield or do you want to use the vanilla Model or a custom Model (Java)?
  19. I'm not be able to reproduce your problem, this code works fine in Singleplayer and on Server. The Logger debug statements are correctly printed on console Please post the full class of your Item. @Override public InteractionResultHolder<ItemStack> use(Level level, Player player, InteractionHand hand) { if (player instanceof ServerPlayer serverPlayer) { LogUtils.getLogger().debug("ServerPlayer"); serverPlayer.connection.teleport(serverPlayer.getX(), 100, serverPlayer.getZ(), 0.0F, 0.0F); } if (!level.isClientSide) { LogUtils.getLogger().debug("!isClientSide"); } return super.use(level, player, hand); }
  20. You haven't registered the default state of the Block, take a look at the DoublePlantBlock constructor how it should be done Note you need to register there all BlockStateProperties (you add to the StateDefinition) with the default value
  21. Then rayTraceDistance is your issue it's in a class which should be only used on client, remove it since you can not store data like this in a Item, the value will be shared. If you want to store data in a Item you need to store the data in the related ItemStack. Therefore i would recommend you to use a Capability.

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.