Skip to content

Commit

Permalink
quick error nuke and update json
Browse files Browse the repository at this point in the history
  • Loading branch information
perappu committed Sep 4, 2023
1 parent e2cb9b6 commit 4de6e81
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion WhoSaidWhatNow/Utils/FileUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static void SaveGroupLog(string path, Dictionary<Player, bool> players)
var p = Plugin.Players.Find(p => c.Value.Sender.Name.Contains(p.Name));
if (players[p!])
{
var tag = Plugin.Config.Formats[c.Value.Type];
var tag = ConfigurationUtils.ChatTypeToFormat(c.Value.Type);
file.WriteLine(c.Value.CreateMessage(tag));
}
}
Expand Down
7 changes: 4 additions & 3 deletions WhoSaidWhatNow/WhoSaidWhatNow.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"Punchline": "Per character chat history plugin.",
"Description": "Per character chat history plugin, evolution of Maia-Everett/dalamud-snooper.\n Main command /whowhat",
"InternalName": "WhoSaidWhatNow",
"AssemblyVersion": "0.4.0",
"TestingAssemblyVersion": "0.4.0",
"AssemblyVersion": "0.4.4",
"TestingAssemblyVersion": "0.4.4",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/perappu/WhoSaidWhatNow",
"DalamudApiLevel": 8,
Expand All @@ -14,5 +14,6 @@
"chat"
],
"IconUrl": "https://raw.githubusercontent.com/perappu/WhoSaidWhatNow/master/WhoSaidWhatNow/images/icon.png",
"Changelog": "* v0.4.2\n * Fixed groups exporting with blank file \n * Fixed custom emotes displaying names incorrectly"
"Changelog": "* v0.4.4\n * added search functionality to trackable players & all tracked chat messages. \n * extended exporting chats to Group tabs."
}

0 comments on commit 4de6e81

Please sign in to comment.