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. post debug log from server and client
  2. run the forge jar from the console and post the output
  3. Error in Ore Excavation, make sure the mod is up to date. If you use the latest version report the bug to the mod author. For next time create your own thread
  4. no it's not, the minecraft libraries are added via dependencies and they come with forge -> you could mod minecraft without buying the game
  5. How on earth did you upload this Git Repo, use a Git Client! In addition, you should use the .gitignore from the mdk when uploading. It ensures that the correct files/folders are upload, also stop putting your project in a separate folder. Did you refresh the gradle dependencies?
  6. you can't create a custom furnace without understanding how it (should) work, and which mappings did you use (i need it for the method names you should look at)?
  7. it's the TreeDecoratorType minecraft use it for Registry look how minecraft register/create them and copy the logic for your TrunkPlacer
  8. did you looked at the vanilla Furnace (TileEntity and Container)
  9. Error in KubeJS, make sure the Mod is up to date. If you use the latest version report the bug to the Mod author
  10. website issue, you could still drag and drop files over the dark gray area and upload them
  11. looks like the PR is not finished, so it could take a while until the PR will be merged
  12. post full log (via https://gist.github.com/), and please stop formatting them since its hard to read
  13. first you mix Server and Client Side code, since you cast the Player of the Event to a ServerPlayerEntity which is Server-Side and then you use the Minecraft class which is completely Client Side you should use a instanceof check bevor like: PlayerEntity player = event.getPlayer(); if (player instanceof ServerPlayerEntity) { // do server stuff here } else if (player instanceof ClientPlayerEntity) { // do client stuff here } if you cleaned up your code (which you should definitely do), you could use PlayerEntity#addEffect
  14. you still save infos, in your SimpleCapProvider via the implementation of INBTSerializable (#serializeNBT and #deserializeNBT)
  15. 1.12 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  16. 1.8 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  17. frist you need to overwirte getAddEntityPacket and return NetworkHooks#getEntitySpawningPacket in your Entity class post the log
  18. 1.8 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  19. MultiMc is not supported on this Forum, use the vanilla Launcher
  20. that should be your problem:
  21. 1.12 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
  22. full debug log not one line
  23. yeah but the game requires java 16 and if he run it with java 8 it will crash
  24. D7 means java 16, since it's required for minecraft 1.17

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.