Skip to content

Commit

Permalink
v3.2.0.0 Alpha builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Sep 13, 2024
1 parent e2eefb7 commit 2e4fbb5
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions DXRCore/DeusEx/Classes/DXRInfo.uc
Original file line number Diff line number Diff line change
Expand Up @@ -192,17 +192,13 @@ function bool IsAprilFools()
function bool IsOctoberUnlocked()
{
// Happy Halloween! unlock gamemodes forever and other features
if(#defined(debug)) return true;
if(VersionOlderThan(VersionNumber(), 3,2,0,0)) return false;
if(!VersionIsStable()) return true;// allow alphas and betas of v3.2 to get access early
return Level.Month >= 10 || Level.Year > 2024;
return true;
}
function bool IsOctober()
{
// Happy Halloween! This will be used for general halloween things like cosmetic changes and piano song weighting
if(GetDXR().flags.IsHalloweenMode()) return true; // this takes priority over memes
if(VersionOlderThan(VersionNumber(), 3,2,0,0)) return false;
if(!class'MenuChoice_ToggleMemes'.static.IsEnabled(GetDXR().flags)) return false;
return Level.Month == 10;
}
Expand Down
4 changes: 2 additions & 2 deletions DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ class DXRVersion extends Info;
simulated static function CurrentVersion(optional out int major, optional out int minor, optional out int patch, optional out int build)
{
major=3;
minor=1;
patch=2;
minor=2;
patch=0;
build=0;//build can't be higher than 99
}

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 2e4fbb5

Please sign in to comment.