Skip to content

Commit

Permalink
DXRMemes only check if memes are enabled, don't directly check if IsR…
Browse files Browse the repository at this point in the history
…educedRando, now that toggle memes is a ternary
  • Loading branch information
Die4Ever committed Mar 29, 2024
1 parent 4b39135 commit a42e9f0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions DXRModules/DeusEx/Classes/DXRMemes.uc
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ function RandomMJ12Globe()
function PreFirstEntry()
{
Super.PreFirstEntry();
if(dxr.flags.IsReducedRando()) return;
if(!class'MenuChoice_ToggleMemes'.static.IsEnabled(dxr.flags)) return;

switch(dxr.localURL)
Expand Down Expand Up @@ -268,7 +267,6 @@ function AnyEntry()
local Vector v;

Super.AnyEntry();
if(dxr.flags.IsReducedRando()) return;
if(!class'MenuChoice_ToggleMemes'.static.IsEnabled(dxr.flags)) return;

switch(dxr.localURL)
Expand Down Expand Up @@ -443,7 +441,6 @@ function PostFirstEntry()
RandomDancing(sp);
}

if(dxr.flags.IsReducedRando()) return;
if(!class'MenuChoice_ToggleMemes'.static.IsEnabled(dxr.flags)) return;

SetSeed("Memes InterpolationPoints");
Expand Down

0 comments on commit a42e9f0

Please sign in to comment.