From 06e3e013be830fcdf8e6c534807613c9faca0333 Mon Sep 17 00:00:00 2001 From: michaeldgg2 <119738087+michaeldgg2@users.noreply.github.com> Date: Sat, 20 Dec 2025 16:53:16 +0100 Subject: [PATCH] ActorIndex: make constructor protected to allow defining custom actor indexes --- OpenRA.Mods.Common/ActorIndex.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/ActorIndex.cs b/OpenRA.Mods.Common/ActorIndex.cs index 71f27c92e6..0ae2418c4e 100644 --- a/OpenRA.Mods.Common/ActorIndex.cs +++ b/OpenRA.Mods.Common/ActorIndex.cs @@ -26,7 +26,7 @@ namespace OpenRA.Mods.Common public IReadOnlyCollection Actors => actors; - ActorIndex(World world, IEnumerable initialActorsToIndex) + protected ActorIndex(World world, IEnumerable initialActorsToIndex) { this.world = world; world.ActorAdded += AddActor;