Skip to content

Commit

Permalink
Merge pull request #527 from robojumper/526-unbreak-the-ranks
Browse files Browse the repository at this point in the history
Unbreak the Ranks, bump to 1.18.2
  • Loading branch information
robojumper authored May 22, 2019
2 parents 455560e + 43cd520 commit 1a31c16
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ defaultproperties
{
MajorVersion = 1;
MinorVersion = 18;
PatchVersion = 1;
PatchVersion = 2;
Commit = "";
}
2 changes: 1 addition & 1 deletion VERSION.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defaultproperties
{
MajorVersion = 1;
MinorVersion = 18;
PatchVersion = 1;
PatchVersion = 2;
Commit = "";
}
'@
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ defaultproperties
{
MajorVersion = 1;
MinorVersion = 18;
PatchVersion = 1;
PatchVersion = 2;
Commit = "";
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ defaultproperties
{
MajorVersion = 1;
MinorVersion = 18;
PatchVersion = 1;
PatchVersion = 2;
Commit = "";
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ defaultproperties
{
MajorVersion = 1;
MinorVersion = 18;
PatchVersion = 1;
PatchVersion = 2;
Commit = "";
}

Original file line number Diff line number Diff line change
Expand Up @@ -14072,7 +14072,7 @@ function string GetSoldierRankName(optional int Rank = -1)
OverrideTuple = TriggerSoldierRankEvent(
Rank,
'SoldierRankName',
class'X2ExperienceConfig'.static.GetRankName(GetRank(), GetSoldierClassTemplateName()));
class'X2ExperienceConfig'.static.GetRankName((Rank == -1) ? GetRank() : Rank, GetSoldierClassTemplateName()));

return OverrideTuple.Data[1].s;
}
Expand All @@ -14097,7 +14097,7 @@ function string GetSoldierShortRankName(optional int Rank = -1)
OverrideTuple = TriggerSoldierRankEvent(
Rank,
'SoldierShortRankName',
class'X2ExperienceConfig'.static.GetShortRankName(GetRank(), GetSoldierClassTemplateName()));
class'X2ExperienceConfig'.static.GetShortRankName((Rank == -1) ? GetRank() : Rank, GetSoldierClassTemplateName()));

return OverrideTuple.Data[1].s;
}
Expand All @@ -14122,7 +14122,7 @@ function string GetSoldierRankIcon(optional int Rank = -1)
OverrideTuple = TriggerSoldierRankEvent(
Rank,
'SoldierRankIcon',
class'UIUtilities_Image'.static.GetRankIcon(GetRank(), GetSoldierClassTemplateName()));
class'UIUtilities_Image'.static.GetRankIcon((Rank == -1) ? GetRank() : Rank, GetSoldierClassTemplateName()));

return OverrideTuple.Data[1].s;
}
Expand Down

0 comments on commit 1a31c16

Please sign in to comment.