Skip to content

Commit

Permalink
feat: add debug for meal effects
Browse files Browse the repository at this point in the history
  • Loading branch information
xhayper committed Aug 25, 2024
1 parent 3d4a5a8 commit ca8ca00
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions COTL_API/Helpers/Debugging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public static void PrintStatistics(bool printNames = false)
if (printNames)
foreach (var item in items)
LogInfo($"{item.Key}: {item.Value.InternalName}");

var mealEffects = CustomMealEffectManager.CustomEffectList;
LogInfo($"Meal Effects: {mealEffects.Count}");
if (printNames)
foreach (var mealEffect in mealEffects)
LogInfo($"{mealEffect.Key}: {mealEffect.Value.InternalName}");

var structures = CustomStructureManager.CustomStructureList;
LogInfo($"Structures: {structures.Count}");
Expand Down

0 comments on commit ca8ca00

Please sign in to comment.