From 9fdc7048343e85b67f8efa65358de97390383e7d Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 10 Jun 2024 21:23:25 +0200 Subject: [PATCH] add missing history property to config --- Dalamud/Configuration/Internal/DalamudConfiguration.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dalamud/Configuration/Internal/DalamudConfiguration.cs b/Dalamud/Configuration/Internal/DalamudConfiguration.cs index 67c2208003..0267042edd 100644 --- a/Dalamud/Configuration/Internal/DalamudConfiguration.cs +++ b/Dalamud/Configuration/Internal/DalamudConfiguration.cs @@ -228,6 +228,11 @@ internal sealed class DalamudConfiguration : IInternalDisposableService /// public int LogLinesLimit { get; set; } = 10000; + /// + /// Gets or sets a list of commands that have been run in the console window. + /// + public List LogCommandHistory { get; set; } = new(); + /// /// Gets or sets a value indicating whether or not the dev bar should open at startup. ///