Skip to content

Commit

Permalink
Keypads will become unhackable if you look at them while knowing the
Browse files Browse the repository at this point in the history
code (with autofill passwords enabled).
  • Loading branch information
theastropath committed Jul 8, 2023
1 parent 4b4e24c commit 34f3522
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion GUI/DeusEx/Classes/FrobDisplayWindow.uc
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,9 @@ function string DeviceStrInfo(HackableDevices device, out int numLines)
{
if( auto_codes ) {
numLines++;
strInfo = strInfo $ CR() $ "CODE KNOWN ("$Keypad(device).validCode$")";
strInfo = strInfo $ CR() $ "CODE KNOWN ("$k.validCode$")";
k.bHackable = False;
k.msgNotHacked = "It's secure, but you already know the code!";
}
else if( known_codes ) {
numLines++;
Expand Down

0 comments on commit 34f3522

Please sign in to comment.