Repurposed Structures (Quilt/Fabric)

Repurposed Structures (Quilt/Fabric)

8M Downloads

1.19.2 Soft-Lock when loading Underground Bastions

tatoyoda600 opened this issue ยท 2 comments

commented

Was checking out this mod's structures by /locateing them around a world, and everything froze when I tried to teleport to an Underground Bastion. Culled the modpack I was playing down to just 4 mods with which I can reproduce the error, all of which seem to play a part in causing the issue.

Presumably a similar case to #277, but I don't really know how to figure out the cause of the issue to be sure, only that this mod's structure seems to be what starts it.

Was able to narrow it down to the following mod combination:

Steps I used to consistently repeat the issue:

  1. Seed: -7123539784518700980
  2. Locate Underground Bastion: /locate structure #repurposed_structures:explorer_maps/bastion_underground
  3. TP to Underground Bastion: /tp @s 2384 ~ -3888

No crash report cause it never reaches the crash.
Game log looks fine, it freezes without ever logging anything useful, so the last thing in all my logs is always the result of the /locate command, followed by the logs for force quitting Minecraft when I decide to use Task Manager on it:

[net.minecraft.server.MinecraftServer/]: tatoyoda600 joined the game
[net.minecraft.advancements.AdvancementList/]: Loaded 19 advancements
[net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] The nearest #repurposed_structures:explorer_maps/bastion_underground (repurposed_structures:bastion_underground) is at [2384, ~, -3888] (3696 blocks away)
[net.minecraft.client.Minecraft/]: Stopping!

The launcher just tells me that the game was closed forcefully:

Process crashed with exit code 1
commented

This is an Environmental issue caused by this line in their mixin
https://github.com/team-abnormals/environmental/blob/464409ecbfc7668b4703bdfe50e557bfbaf61c80/src/main/java/com/teamabnormals/environmental/core/mixin/MobMixin.java#L46

It is deadlocking the game when a skeleton is spawned by my structure during worldgen. Likely reproducable with a vanilla structure datapack if it contains skeletons saved in structure nbt files.

Environmental would need to fix their mixin.

I did a thread dump with VisualVM to detect the issue of why the game is stuck
image

There isn't anything I can do here about Environmentals mixin

commented

Ah ok, thanks for the help. Hopefully they'll be willing to fix it.