Skip to content

Commit

Permalink
Now only combat messages are reported
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmikkel committed Sep 28, 2018
1 parent 11eb1da commit d52d004
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CombatLogExporter/CombatLogExporterImplementation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static CombatLogExporterManager Instance
/// <param name="message">The message that is to be added</param>
public void AddMessage(ConsoleMessage message)
{
if (InCombat)
if (InCombat && message.Mode == ConsoleState.Combat)
{
String handledMessage = combatReporting.HandleMessage(message, configuration);
if (handledMessage != null)
Expand Down
4 changes: 2 additions & 2 deletions CombatLogExporter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
[assembly: AssemblyVersion("1.5.0.1")]
[assembly: AssemblyFileVersion("1.5.0.1")]
2 changes: 1 addition & 1 deletion CombatLogExporter/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Combat Log Exporter - 1.5
Combat Log Exporter - 1.5.0.1

:: REQUIREMENTS ::
• Deadfire at version 3.0.0.0021
Expand Down

0 comments on commit d52d004

Please sign in to comment.