feat: add item dumper

This commit is contained in:
2026-06-18 17:20:40 -03:00
parent 1354874bb2
commit 6dad0eecee
2 changed files with 73 additions and 1 deletions
+14
View File
@@ -24,6 +24,20 @@ catch (Exception er)
return 1;
}
log.Info("Getting item data and icons");
try
{
dumper.DumpItems();
}
catch (Exception er)
{
log.Error("Error while dumping items");
log.Error("Exception: {0}", er.ToString());
Console.ReadKey();
return 1;
}
log.Info("Dump finished");
return 0;