Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert #6903 #6995

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions code/modules/security_levels/keycard_authentication.dm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/obj/structure/machinery/keycard_auth
name = "Keycard Authentication Device"
desc = "This device is used to trigger station functions, which require more than one ID card to authenticate."
desc = "This device is used to trigger station functions, which require multiple swipes of an ID card to authenticate."
icon = 'icons/obj/structures/machinery/monitors.dmi'
icon_state = "auth_off"
unacidable = TRUE
Expand Down Expand Up @@ -36,9 +36,6 @@
if(active == 1)
//This is not the device that made the initial request. It is the device confirming the request.
if(event_source)
if(event_source.event_triggered_by == user)
user.visible_message(SPAN_DANGER("Your ID is rejected, as it is the one that triggered the event!"))
return
event_source.confirmed = 1
event_source.event_confirmed_by = user
else if(screen == 2)
Expand Down
Loading