Add debug logs to our expressions

This commit is contained in:
2025-05-21 16:27:52 +02:00
parent 66ca370ac2
commit 345f8c4565
2 changed files with 38 additions and 9 deletions

View File

@@ -21,9 +21,9 @@ namespace BanquetForCyka {
debug = Config.Bind("Debug", "Global Debug", false);
debugXp = Config.Bind("Debug", "XP Debug", false);
xpMultiplier =
new ExpressionConfigEntry(Config, "General", "XP Multiplier", "v*1",
"XP Multiplier expression. Use 'v' to represent the original value.");
xpMultiplier = new ExpressionConfigEntry(
Config, "General", "XP Multiplier", "v*1",
"XP Multiplier expression. Use 'v' to represent the original value.", debugXp);
Logger.LogInfo("BanquetForCyka loaded");
HarmonyFileLog.Enabled = true;