Skip to content

Commit

Permalink
increase female catacombs hostage movement speed (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
MQDuck authored Jan 2, 2025
1 parent f46abf4 commit 059bf8f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion DXRMapFixups/DeusEx/Classes/DXRFixupParis.uc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ function PreFirstEntryMapFixes()
}
}


class'PlaceholderEnemy'.static.Create(self,vectm(-362,-3444,-32));
class'PlaceholderEnemy'.static.Create(self,vectm(-743,677,-256));
} else {
Expand All @@ -94,6 +93,11 @@ function PreFirstEntryMapFixes()
}
AddSwitch( vect(897.238892, -120.852928, -9.965580), rot(0,0,0), 'catacombs_blastdoor02' );

foreach AllActors(class'ScriptedPawn', sp, 'hostage_female') {
sp.GroundSpeed = 200.0; // same speed as the male hostage
break;
}

class'PlaceholderEnemy'.static.Create(self,vectm(-1573,-113,-64));
class'PlaceholderEnemy'.static.Create(self,vectm(781,1156,-32));

Expand Down

0 comments on commit 059bf8f

Please sign in to comment.