Skip to content

Commit

Permalink
Move weapon mod out of the safe behind Manderley's bookshelf in mission
Browse files Browse the repository at this point in the history
3
  • Loading branch information
theastropath committed Aug 1, 2023
1 parent a6d1bb3 commit 490b907
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions DXRMapFixups/DeusEx/Classes/DXRFixupM03.uc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ function PreFirstEntryMapFixes()
local NanoKey k;
local #var(prefix)InformationDevices i;
local #var(prefix)UNATCOTroop unatco;
local #var(prefix)WeaponModRecoil wmr;

switch (dxr.localURL)
{
Expand Down Expand Up @@ -197,6 +198,14 @@ function PreFirstEntryMapFixes()
break;
case "03_NYC_UNATCOHQ":
FixUNATCOCarterCloset();

//Move weapon mod out of Manderley's secret (inaccessible) safe
foreach AllActors(class'#var(prefix)WeaponModRecoil',wmr){
if (wmr.Name=='WeaponModRecoil0'){
wmr.SetLocation(vectm(420.843567,175.866135,261.520447));
}
}

//Spawn some placeholders for new item locations
Spawn(class'PlaceholderItem',,, vectm(363.284149, 344.847, 50.32)); //Womens bathroom counter
Spawn(class'PlaceholderItem',,, vectm(211.227, 348.46, 50.32)); //Mens bathroom counter
Expand Down

0 comments on commit 490b907

Please sign in to comment.