File tree 3 files changed +6
-6
lines changed 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace EventMapHpViewer
15
15
public class MapHpViewer : IPlugin , ITool
16
16
{
17
17
internal const string title = "MapHPViewer" ;
18
- internal const string version = "3.3.0 " ;
18
+ internal const string version = "3.3.1 " ;
19
19
private ToolViewModel vm ;
20
20
21
21
public void Initialize ( )
Original file line number Diff line number Diff line change @@ -80,13 +80,13 @@ public async Task<RemainingCount> GetRemainingCount(bool useCache = false)
80
80
private RemainingCount CalculateRemainingCount ( Raw . map_exboss [ ] data )
81
81
{
82
82
return new RemainingCount (
83
- CalculateRemainingCount (
84
- data . Where ( x => ! x . isLast ) . Min ( x => x . ship . maxhp ) ,
85
- data . Where ( x => x . isLast ) . Min ( x => x . ship . maxhp )
86
- ) ,
87
83
CalculateRemainingCount (
88
84
data . Where ( x => ! x . isLast ) . Max ( x => x . ship . maxhp ) ,
89
85
data . Where ( x => x . isLast ) . Max ( x => x . ship . maxhp )
86
+ ) ,
87
+ CalculateRemainingCount (
88
+ data . Where ( x => ! x . isLast ) . Min ( x => x . ship . maxhp ) ,
89
+ data . Where ( x => x . isLast ) . Min ( x => x . ship . maxhp )
90
90
) ) ;
91
91
}
92
92
Original file line number Diff line number Diff line change 43
43
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
44
44
// 既定値にすることができます:
45
45
// [assembly: AssemblyVersion("1.0.*")]
46
- [ assembly: AssemblyVersion ( "3.3.0 .0" ) ]
46
+ [ assembly: AssemblyVersion ( "3.3.1 .0" ) ]
You can’t perform that action at this time.
0 commit comments