diff --git a/CHANGELOG.md b/CHANGELOG.md
index faabe86..6711b56 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
**Changelog**
--
+**Version 1.3.8
**
+
+**Features
**
+
+* Added interior selection history to DayHistory
+
+
+
+
+
**Version 1.3.7
**
**Fixes
**
diff --git a/LethalLevelLoader/Patches/LevelManager.cs b/LethalLevelLoader/Patches/LevelManager.cs
index 91f202f..bfadfec 100644
--- a/LethalLevelLoader/Patches/LevelManager.cs
+++ b/LethalLevelLoader/Patches/LevelManager.cs
@@ -303,6 +303,7 @@ public static void LogDayHistory()
DayHistory newDayHistory = new DayHistory();
daysTotal++;
+ newDayHistory.allViableOptions = DungeonManager.GetValidExtendedDungeonFlows(CurrentExtendedLevel, false).Select(e => e.extendedDungeonFlow).ToList();
newDayHistory.extendedLevel = LevelManager.CurrentExtendedLevel;
newDayHistory.extendedDungeonFlow = DungeonManager.CurrentExtendedDungeonFlow;
newDayHistory.day = daysTotal;
@@ -388,6 +389,7 @@ public class DayHistory
public int quota;
public int day;
public ExtendedLevel extendedLevel;
+ public List allViableOptions;
public ExtendedDungeonFlow extendedDungeonFlow;
public LevelWeatherType weatherEffect;
}
diff --git a/LethalLevelLoader/Plugin.cs b/LethalLevelLoader/Plugin.cs
index 90f9875..6310a54 100644
--- a/LethalLevelLoader/Plugin.cs
+++ b/LethalLevelLoader/Plugin.cs
@@ -24,7 +24,7 @@ public class Plugin : BaseUnityPlugin
{
public const string ModGUID = "imabatby.lethallevelloader";
public const string ModName = "LethalLevelLoader";
- public const string ModVersion = "1.3.7";
+ public const string ModVersion = "1.3.8";
internal static Plugin Instance;