Skip to content

Commit

Permalink
[MIRROR] Fixes the Petrov R&D server access
Browse files Browse the repository at this point in the history
  • Loading branch information
Sbotkin authored and SuhEugene committed Sep 14, 2023
1 parent dfb55b5 commit 08eb061
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/game/machinery/telecomms/logbrowser.dm
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,6 @@
playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1)
emagged = TRUE
req_access.Cut()
to_chat(user, SPAN_NOTICE("You you disable the security protocols"))
to_chat(user, SPAN_NOTICE("You disable the security protocols"))
src.updateUsrDialog()
return 1
2 changes: 1 addition & 1 deletion code/game/machinery/telecomms/telemonitor.dm
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@
playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1)
emagged = TRUE
req_access.Cut()
to_chat(user, SPAN_NOTICE("You you disable the security protocols"))
to_chat(user, SPAN_NOTICE("You disable the security protocols"))
src.updateUsrDialog()
return 1
2 changes: 1 addition & 1 deletion code/modules/research/rdconsole.dm
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1)
emagged = TRUE
req_access.Cut()
to_chat(user, SPAN_NOTICE("You you disable the security protocols."))
to_chat(user, SPAN_NOTICE("You disable the security protocols."))
return 1

/obj/machinery/computer/rdconsole/CanUseTopic(mob/user, datum/topic_state/state, href_list)
Expand Down
6 changes: 3 additions & 3 deletions code/modules/research/server.dm
Original file line number Diff line number Diff line change
Expand Up @@ -266,14 +266,14 @@
playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1)
emagged = TRUE
req_access.Cut()
to_chat(user, SPAN_NOTICE("You you disable the security protocols."))
to_chat(user, SPAN_NOTICE("You disable the security protocols."))
src.updateUsrDialog()
return 1

/obj/machinery/r_n_d/server/robotics
name = "robotics R&D server"
id_with_upload_string = "1;2"
id_with_download_string = "1;2"
id_with_upload_string = "1;2;3"
id_with_download_string = "1;2;3"
server_id = 2

/obj/machinery/r_n_d/server/core
Expand Down

0 comments on commit 08eb061

Please sign in to comment.