Skip to content

Commit

Permalink
Make doors unpickable if you already have the key and change the message
Browse files Browse the repository at this point in the history
when you try to unlock it
  • Loading branch information
theastropath committed Jul 8, 2023
1 parent da5e92d commit 0d09d13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions GUI/DeusEx/Classes/FrobDisplayWindow.uc
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,8 @@ function string MoverStrInfo(Mover m, out int numLines)
numLines++;
if (keyAcq){
strInfo = strInfo $ CR() $ "KEY ACQUIRED";
dxMover.bPickable=False;
dxMover.msgLocked="The door is locked, but you already have the key!";
} else {
strInfo = strInfo $ CR() $ "Key unacquired";
}
Expand Down

0 comments on commit 0d09d13

Please sign in to comment.