From 3e5279dcb1b355e29c88abe5f705079047a1c6d4 Mon Sep 17 00:00:00 2001 From: sorokya Date: Mon, 28 Mar 2022 15:51:18 +0200 Subject: [PATCH] Make MapWarpState readonly for provider --- EOLib/Domain/Map/CurrentMapStateRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EOLib/Domain/Map/CurrentMapStateRepository.cs b/EOLib/Domain/Map/CurrentMapStateRepository.cs index 44a8a7047..31b113ad9 100644 --- a/EOLib/Domain/Map/CurrentMapStateRepository.cs +++ b/EOLib/Domain/Map/CurrentMapStateRepository.cs @@ -48,7 +48,7 @@ public interface ICurrentMapStateProvider IReadOnlyCollection VisibleSpikeTraps { get; } - WarpState MapWarpState { get; set; } + WarpState MapWarpState { get; } HashSet UnknownPlayerIDs { get; }