Skip to content

Commit

Permalink
fix 10132 (#10134)
Browse files Browse the repository at this point in the history
Miner before Quarrier in Mine hut
  • Loading branch information
Raycoms authored Aug 20, 2024
1 parent 28a194c commit d15fb4c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import com.minecolonies.core.colony.buildings.moduleviews.WorkerBuildingModuleView;
import com.minecolonies.core.network.messages.server.colony.OpenInventoryMessage;
import com.minecolonies.core.network.messages.server.colony.building.HutRenameMessage;
import it.unimi.dsi.fastutil.ints.Int2ObjectLinkedOpenHashMap;
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
import net.minecraft.core.BlockPos;
import net.minecraft.nbt.CompoundTag;
Expand Down Expand Up @@ -148,7 +149,7 @@ public abstract class AbstractBuildingView implements IBuildingView
/**
* Set of building modules this building has.
*/
protected Int2ObjectOpenHashMap<IBuildingModuleView> moduleViews = new Int2ObjectOpenHashMap<>();
protected Int2ObjectLinkedOpenHashMap<IBuildingModuleView> moduleViews = new Int2ObjectLinkedOpenHashMap<>();

/**
* Building type
Expand Down

0 comments on commit d15fb4c

Please sign in to comment.