Skip to content
This repository has been archived by the owner on Jun 13, 2020. It is now read-only.

Commit

Permalink
emergency bug fix (release v20190812.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaehyuk-Lee committed Aug 12, 2019
1 parent 1b75815 commit c7f9fb9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion App/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
internal class Global
{
public const string VERSION = "v20190812.1";
public const string VERSION = "v20190812.2";

public const string APPNAME = "DFAssist";
public const string SETTINGS_FILEPATH = @"config.ini";
Expand Down
8 changes: 8 additions & 0 deletions App/Network/Network.Analyser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -451,13 +451,21 @@ private void HandleMessage(byte[] message)
{
mainForm.overlayForm.SetDutyStatus(instance, order, dps, healer);
}
else
{
mainForm.overlayForm.SetDutyStatus(instance, tank, dps, healer);
}
}
else if (state == State.QUEUED)
{
if (rouletteCode > 0)
{
mainForm.overlayForm.SetDutyStatus(instance, order, dps, healer);
}
else
{
mainForm.overlayForm.SetDutyStatus(instance, tank, dps, healer);
}
}

lastMember = member;
Expand Down

0 comments on commit c7f9fb9

Please sign in to comment.