File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
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.2 .0" ;
18
+ internal const string version = "3.3 .0" ;
19
19
private ToolViewModel vm ;
20
20
21
21
public void Initialize ( )
Original file line number Diff line number Diff line change @@ -32,7 +32,10 @@ private static double DrumTransportationCapacity(this Organization org)
32
32
=> org . CountSlotitem ( 75 ) * 5.0 ;
33
33
34
34
private static double DaihatsuTransportationCapacity ( this Organization org )
35
- => org . CountSlotitem ( 68 ) * 8.0 ;
35
+ => org . CountSlotitem ( 68 ) * 8.0 + org . CountSlotitem ( 166 ) * 8.0 ;
36
+
37
+ private static double LaunchransportationCapacity ( this Organization org )
38
+ => org . CountSlotitem ( 167 ) * 2.0 ;
36
39
37
40
private static double RationsTransportationCapacity ( this Organization org )
38
41
=> org . CountExSlotitem ( 145 ) * 1.0 ;
Original file line number Diff line number Diff line change 43
43
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
44
44
// 既定値にすることができます:
45
45
// [assembly: AssemblyVersion("1.0.*")]
46
- [ assembly: AssemblyVersion ( "3.2 .0.0" ) ]
46
+ [ assembly: AssemblyVersion ( "3.3 .0.0" ) ]
You can’t perform that action at this time.
0 commit comments