Skip to content

Commit

Permalink
fix 10132
Browse files Browse the repository at this point in the history
  • Loading branch information
Raycoms committed Aug 19, 2024
1 parent 9772c6b commit e432b6f
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 e432b6f

Please sign in to comment.