Skip to content

Commit

Permalink
Allow GM_DressShirt mesh to use weapons two handed
Browse files Browse the repository at this point in the history
  • Loading branch information
theastropath committed Jul 30, 2023
1 parent 21e0978 commit 4d99f78
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions DXRFixes/DeusEx/Classes/ScriptedPawn.uc
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,7 @@ function UpdateFire()

function Bool HasTwoHandedWeapon()
{
if(bIsFemale || Mesh==LodMesh'DeusExCharacters.GM_DressShirt' || Mesh==LodMesh'DeusExCharacters.GM_DressShirt_S'
|| Mesh==LodMesh'DeusExCharacters.GM_Trench_F')
if(bIsFemale || Mesh==LodMesh'DeusExCharacters.GM_DressShirt_S' || Mesh==LodMesh'DeusExCharacters.GM_Trench_F')
return False;
if ((Weapon != None) && (Weapon.Mass >= 30))
return True;
Expand Down

0 comments on commit 4d99f78

Please sign in to comment.