Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
andanteyk committed May 1, 2015
2 parents 470a95f + 3237a4c commit 7071af5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions ElectronicObserver/Utility/SoftwareInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static string SoftwareNameEnglish {
/// </summary>
public static string VersionJapanese {
get {
return SoftwareNameJapanese + "一二型改三";
return SoftwareNameJapanese + "一二型改三甲";
}
}

Expand All @@ -44,7 +44,7 @@ public static string VersionJapanese {
/// </summary>
public static string VersionEnglish {
get {
return "1.2.3";
return "1.2.3.1";
}
}

Expand All @@ -54,7 +54,7 @@ public static string VersionEnglish {
/// </summary>
public static DateTime UpdateTime {
get {
return DateTimeHelper.CSVStringToTime( "2015/05/01 21:00:00" );
return DateTimeHelper.CSVStringToTime( "2015/05/01 23:00:00" );
}
}

Expand Down
4 changes: 2 additions & 2 deletions ElectronicObserver/Window/Dialog/DialogVersion.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ElectronicObserver/Window/FormBattle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private void Updated( string apiname, dynamic data ) {
case "api_req_combined_battle/midnight_battle": {
int[] hp = bm.BattleNight.EmulateBattle();

SetNightBattleEvent( bm.BattleNight.InitialHP.Skip( 1 ).ToArray(), true, bm.BattleNight );
SetNightBattleEvent( bm.BattleNight.InitialHP.Skip( 1 ).Concat( ( (BattleDataCombined)bm.BattleNight ).InitialHPCombined.Skip( 1 ) ).ToArray(), true, bm.BattleNight );
SetHPCombined( hp, bm.BattleNight );
SetDamageRateCombined( hp, bm.BattleDay );

Expand All @@ -218,7 +218,7 @@ private void Updated( string apiname, dynamic data ) {
SetFormation( bm.BattleNight );
ClearAerialWarfare();
ClearSearchingResult();
SetNightBattleEvent( bm.BattleNight.InitialHP.Skip( 1 ).ToArray(), true, bm.BattleNight );
SetNightBattleEvent( bm.BattleNight.InitialHP.Skip( 1 ).Concat( ( (BattleDataCombined)bm.BattleNight ).InitialHPCombined.Skip( 1 ) ).ToArray(), true, bm.BattleNight );
SetHPCombined( hp, bm.BattleNight );
SetDamageRateCombined( hp, bm.BattleNight );

Expand Down

0 comments on commit 7071af5

Please sign in to comment.