Skip to content

Commit

Permalink
v3.0.0.6 release Merge pull request #802 from Die4Ever/develop
Browse files Browse the repository at this point in the history
v3.0.0.6 release
  • Loading branch information
Die4Ever authored Jun 13, 2024
2 parents bb743c1 + acf0fa6 commit ece442c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ simulated static function CurrentVersion(optional out int major, optional out in
major=3;
minor=0;
patch=0;
build=2;//build can't be higher than 99
build=6;//build can't be higher than 99
}

simulated static function bool VersionIsStable()
{
return false;
return true;
}

simulated static function string VersionString(optional bool full)
{
local int major,minor,patch,build;
local string status;

status = "Beta";
status = "";

if(status!="") {
status = " " $ status;
Expand Down
3 changes: 3 additions & 0 deletions DXRVanilla/DeusEx/Classes/PersonaScreenInventory.uc
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ function EnableButtons()
} else {
if (WeaponMod(inv) != None || AugmentationUpgradeCannister(inv) != None || DeusExWeapon(inv) != None) {
btnUse.DisableWindow();
} else if (AugmentationCannister(inv) != None) {
btnRefusal.DisableWindow();
btnUse.DisableWindow();
} else {
if ((inv == player.inHand ) || (inv == player.inHandPending))
btnEquip.SetButtonText(UnequipButtonLabel);
Expand Down
Binary file modified DeusEx.u
Binary file not shown.
Binary file modified GMDXRandomizer.u
Binary file not shown.
Binary file modified HXRandomizer.u
Binary file not shown.
Binary file modified RevRandomizer.u
Binary file not shown.
Binary file modified VMDRandomizer.u
Binary file not shown.

0 comments on commit ece442c

Please sign in to comment.