Skip to content

Commit

Permalink
Merge pull request #70 from EliphasNUIT/master
Browse files Browse the repository at this point in the history
fixed a bug where dhuum's pre-event would be shorter than expected
  • Loading branch information
EliphasNUIT authored Jul 1, 2018
2 parents bc31d42 + 492a513 commit f8dea1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LuckParser/Models/ParseModels/Players/Boss.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ private void setPhases(ParsedLog log)
}
break;
case 0x4BFA:
CombatItem invulDhuum = log.getBoonData().Find(x => x.getSkillID() == 762 && x.isBuffremove() != ParseEnum.BuffRemove.None && x.getSrcInstid() == getInstid());
CombatItem invulDhuum = log.getBoonData().Find(x => x.getSkillID() == 762 && x.isBuffremove() != ParseEnum.BuffRemove.None && x.getSrcInstid() == getInstid() && x.getTime() > 129000 + log.getBossData().getFirstAware());
if (invulDhuum != null)
{
end = invulDhuum.getTime() - log.getBossData().getFirstAware();
Expand Down
4 changes: 2 additions & 2 deletions LuckParser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
[assembly: AssemblyVersion("1.5.2.0")]
[assembly: AssemblyFileVersion("1.5.2.0")]

0 comments on commit f8dea1f

Please sign in to comment.