From 96dbc5eaa74db98e8127687e369b242cd6cb5f1d Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Fri, 29 Jul 2016 07:31:16 +0100 Subject: [PATCH 1/2] Can leave fingerprints on ATMs --- code/modules/economy/ATM.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/economy/ATM.dm b/code/modules/economy/ATM.dm index 5ea69f25c55..e6fc0e7ade4 100644 --- a/code/modules/economy/ATM.dm +++ b/code/modules/economy/ATM.dm @@ -125,6 +125,7 @@ log transactions if(get_dist(src,user) <= 1) //check to see if the user has low security enabled scan_user(user) + src.add_fingerprint(user) //js replicated from obj/machinery/computer/card var/dat = {"

Nanotrasen Automatic Teller Machine

From 7ef79222ae8863d1e45535af9ded8ff5e722dc53 Mon Sep 17 00:00:00 2001 From: TullyBurnalot Date: Fri, 29 Jul 2016 10:24:14 +0100 Subject: [PATCH 2/2] Removes pointless src. Again --- code/modules/economy/ATM.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/economy/ATM.dm b/code/modules/economy/ATM.dm index e6fc0e7ade4..cc07dd248b4 100644 --- a/code/modules/economy/ATM.dm +++ b/code/modules/economy/ATM.dm @@ -125,7 +125,7 @@ log transactions if(get_dist(src,user) <= 1) //check to see if the user has low security enabled scan_user(user) - src.add_fingerprint(user) + add_fingerprint(user) //js replicated from obj/machinery/computer/card var/dat = {"

Nanotrasen Automatic Teller Machine