Skip to content

Commit

Permalink
Add DXRGrenades to default loaded modules
Browse files Browse the repository at this point in the history
  • Loading branch information
theastropath committed Sep 15, 2023
1 parent ca16e4b commit d673eac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ simulated static function CurrentVersion(optional out int major, optional out in
major=2;
minor=5;
patch=4;
build=1;//build can't be higher than 99
build=2;//build can't be higher than 99
}

simulated static function string VersionString(optional bool full)
Expand Down
6 changes: 5 additions & 1 deletion DXRCore/DeusEx/Classes/DXRando.uc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ function CheckConfig()
{
local int i;

if( VersionOlderThan(config_version, 2,5,4,1) ) {
if( VersionOlderThan(config_version, 2,5,4,2) ) {
for(i=0; i < ArrayCount(modules_to_load); i++) {
modules_to_load[i] = "";
}
Expand Down Expand Up @@ -173,6 +173,7 @@ function vanilla_modules()
modules_to_load[i++] = "DXRPlayerStats";
modules_to_load[i++] = "DXRMapVariants";
modules_to_load[i++] = "DXRWeaponMods";
modules_to_load[i++] = "DXRGrenades";
}

function hx_modules()
Expand Down Expand Up @@ -206,6 +207,7 @@ function hx_modules()
modules_to_load[i++] = "DXRPlayerStats";
modules_to_load[i++] = "DXRMapVariants";
modules_to_load[i++] = "DXRWeaponMods";
modules_to_load[i++] = "DXRGrenades";
}

function gmdx_modules()
Expand Down Expand Up @@ -243,6 +245,7 @@ function gmdx_modules()
modules_to_load[i++] = "DXRPlayerStats";
modules_to_load[i++] = "DXRMapVariants";
modules_to_load[i++] = "DXRWeaponMods";
modules_to_load[i++] = "DXRGrenades";
}

function revision_modules()
Expand Down Expand Up @@ -284,6 +287,7 @@ function vmd_modules()
modules_to_load[i++] = "DXRPlayerStats";
modules_to_load[i++] = "DXRMapVariants";
modules_to_load[i++] = "DXRWeaponMods";
modules_to_load[i++] = "DXRGrenades";
}

function DXRFlags LoadFlagsModule()
Expand Down
Binary file modified DeusEx.u
Binary file not shown.

0 comments on commit d673eac

Please sign in to comment.