Encrypted-Thoughts / DimensionPortalLinker

Fabric mod that lets you configure how end and nether portals work in custom dimensions instead of just being disabled.
MIT License
3 stars 0 forks source link

Mod doenst work for me. #3

Closed stefanschfr closed 3 months ago

stefanschfr commented 3 months ago

Hello, I wanted to add the mod to my modpack, which contains a mod I programmed that creates a copy of each dimension. I now wanted to use the mod to travel within the dimensions I created. However, the mod does not work. I am not able to activate the portals in my dimensions. I have also tried to swap the Nether and End in the overworld, but without success. Im using Fabric and Minecraft version 1.20.4 and the matching version of your mod. Does anybody have some ideas how to fix it? I am also available via Discord to simplify communication. Discord: stefan2005

Many thanks in advance and have a nice day

My config file looks like this:

{
  "Dimensions": [
    {
      "Dimension": "minecraft:overworld",
      "Type": "minecraft:overworld",
      "IsNetherPortalEnabled": true,
      "NetherPortalDestinationDimension": "minecraft:the_nether",
      "IsEndPortalEnabled": true,
      "EndPortalDestinationDimension": "minecraft:the_end"
    },
    {
      "Dimension": "farm-dimension:enddim",
      "Type": "minecraft:the_end",
      "IsNetherPortalEnabled": false,
      "IsEndPortalEnabled": true,
      "EndPortalDestinationDimension": "minecraft:overworld"
     },
    {
      "Dimension": "minecraft:the_end",
      "Type": "minecraft:the_end",
      "IsNetherPortalEnabled": false,
      "IsEndPortalEnabled": true,
      "EndPortalDestinationDimension": "minecraft:overworld"
    },
    {
      "Dimension": "farm-dimension:overdim",
      "Type": "farm-dimension:overdim_type",
      "IsNetherPortalEnabled": true,
      "NetherPortalDestinationDimension": "farm-dimension:netherdim",
      "IsEndPortalEnabled": true,
      "EndPortalDestinationDimension": "farm-dimension:enddim"
    },
    {
      "Dimension": "minecraft:the_nether",
      "Type": "minecraft:the_nether",
      "IsNetherPortalEnabled": true,
      "NetherPortalDestinationDimension": "minecraft:overworld",
      "IsEndPortalEnabled": false
    },
    {
      "Dimension": "farm-dimension:netherdim",
      "Type": "farm-dimension:netherdim_type",
      "IsNetherPortalEnabled": true,
      "NetherPortalDestinationDimension": "farm-dimension:overdim",
      "IsEndPortalEnabled": false
    }
  ]
}
Encrypted-Thoughts commented 3 months ago

ah I had the mixins set to server only for some reason and I never use this in single player so I didn't notice.

Try https://github.com/Encrypted-Thoughts/DimensionPortalLinker/releases/download/1.1.1/portal_linker-1.20.4-1.1.1.jar and see how it works.