Skip to content

Commit

Permalink
Build 17
Browse files Browse the repository at this point in the history
Fixed max health on Trilogy PAL and New Play Controls NTSC-J
  • Loading branch information
UltiNaruto committed Jun 5, 2022
1 parent a662c5e commit b1ed538
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions MP1RandoAssist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.16.0")]
[assembly: AssemblyFileVersion("1.0.16.0")]
[assembly: AssemblyVersion("1.0.17.0")]
[assembly: AssemblyFileVersion("1.0.17.0")]
2 changes: 1 addition & 1 deletion MP1RandoAssist/Wrapper/Prime/MPT_MP1_NTSC_J.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ internal class MPT_MP1_NTSC_J : Prime
protected const long OFF_CGAMESTATE = OFF_CGAMEGLOBALOBJECTS + 0x134;
protected const long OFF_CSTATEMANAGER = 0x804BF69C;
protected const long OFF_MORPHBALLBOMBS_COUNT = 0x804C11A0;
protected const long OFF_BASEHEALTH = 0x806461C8;
protected const long OFF_BASEHEALTH = 0x806461CC;
protected const long OFF_ENERGYTANK_CAPACITY = OFF_BASEHEALTH + 4;

protected override long CWorld
Expand Down
2 changes: 1 addition & 1 deletion MP1RandoAssist/Wrapper/Prime/MPT_MP1_PAL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ internal class MPT_MP1_PAL : Prime
protected const long OFF_CGAMESTATE = OFF_CGAMEGLOBALOBJECTS + 0x134;
protected const long OFF_CSTATEMANAGER = 0x804C335C;
protected const long OFF_MORPHBALLBOMBS_COUNT = 0x804C4E60;
protected const long OFF_BASEHEALTH = 0x805CA220;
protected const long OFF_BASEHEALTH = 0x805CA224;
protected const long OFF_ENERGYTANK_CAPACITY = OFF_BASEHEALTH + 4;

protected override long CWorld
Expand Down

0 comments on commit b1ed538

Please sign in to comment.