Skip to content

Commit

Permalink
fix clothes racks with LDDP when memes are disabled (Die4Ever#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
MQDuck committed Jul 18, 2024
1 parent ba4d76f commit 0d5e1ea
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions DXRModules/DeusEx/Classes/DXRFashion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@ simulated function PlayerAnyEntry(#var(PlayerPawn) p)
local int lastUpdate, i;
local class<Pawn> jcd;
Super.PlayerAnyEntry(p);

isFemale = dxr.flagbase.GetBool('LDDPJCIsFemale');
if(!class'MenuChoice_ToggleMemes'.static.IsEnabled(dxr.flags)) return;

isFemale = false;
//if( Level.Game.Class.Name == 'JCDentonFemaleGameInfo' ) {
if( dxr.flagbase.GetBool('LDDPJCIsFemale') ) {
isFemale = true;
//dxr.flagbase.SetBool('LDDPJCIsFemale', true,, 999);
if(isFemale) {
info("DXRFashion isFemale, Level.Game.Class.Name == " $ Level.Game.Class.Name);
}

Expand Down

0 comments on commit 0d5e1ea

Please sign in to comment.