From 437c527fd2b94a4801bc956fd21d6bee1e154173 Mon Sep 17 00:00:00 2001
From: kevinz000 <2003111+kevinz000@users.noreply.github.com>
Date: Sat, 25 Nov 2017 13:17:11 -0800
Subject: [PATCH 1/2] Fixes rdconsole emagging
---
code/modules/research/rdconsole.dm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm
index b98a75e6fd..165a5dc6f6 100644
--- a/code/modules/research/rdconsole.dm
+++ b/code/modules/research/rdconsole.dm
@@ -148,11 +148,19 @@ won't update every console in existence) but it's more of a hassle to do. Also,
/obj/machinery/computer/rdconsole/emag_act(mob/user)
+<<<<<<< HEAD
if(emagged)
return
playsound(src, "sparks", 75, 1)
emagged = TRUE
to_chat(user, "You disable the security protocols")
+=======
+ if(!emagged)
+ to_chat(user, "You disable the security protocols")
+ playsound(src, "sparks", 75, 1)
+ emagged = TRUE
+ return ..()
+>>>>>>> 1148c49... fixes emagging (#33065)
/obj/machinery/computer/rdconsole/Topic(href, href_list)
if(..())
From c9f0f4923f6e23dd4e120ff7bc0f560201295721 Mon Sep 17 00:00:00 2001
From: deathride58
Date: Sun, 26 Nov 2017 21:34:09 -0500
Subject: [PATCH 2/2] Update rdconsole.dm
---
code/modules/research/rdconsole.dm | 8 --------
1 file changed, 8 deletions(-)
diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm
index 165a5dc6f6..d79b5d5eb8 100644
--- a/code/modules/research/rdconsole.dm
+++ b/code/modules/research/rdconsole.dm
@@ -148,19 +148,11 @@ won't update every console in existence) but it's more of a hassle to do. Also,
/obj/machinery/computer/rdconsole/emag_act(mob/user)
-<<<<<<< HEAD
- if(emagged)
- return
- playsound(src, "sparks", 75, 1)
- emagged = TRUE
- to_chat(user, "You disable the security protocols")
-=======
if(!emagged)
to_chat(user, "You disable the security protocols")
playsound(src, "sparks", 75, 1)
emagged = TRUE
return ..()
->>>>>>> 1148c49... fixes emagging (#33065)
/obj/machinery/computer/rdconsole/Topic(href, href_list)
if(..())