diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm
index e94ba0e48a..af11be2e5b 100644
--- a/code/game/machinery/computer/Operating.dm
+++ b/code/game/machinery/computer/Operating.dm
@@ -1,79 +1,3 @@
-<<<<<<< HEAD
-/obj/machinery/computer/operating
- name = "operating computer"
- desc = "Used to monitor the vitals of a patient during surgery."
- icon_screen = "crew"
- icon_keyboard = "med_key"
- circuit = /obj/item/circuitboard/computer/operating
- var/mob/living/carbon/human/patient
- var/obj/structure/table/optable/table
-
- light_color = LIGHT_COLOR_BLUE
-
-/obj/machinery/computer/operating/Initialize()
- . = ..()
- find_table()
-
-/obj/machinery/computer/operating/proc/find_table()
- for(var/dir in GLOB.cardinals)
- table = locate(/obj/structure/table/optable, get_step(src, dir))
- if(table)
- table.computer = src
- break
-
-
-/obj/machinery/computer/operating/attack_hand(mob/user)
- if(..())
- return
- interact(user)
-
-/obj/machinery/computer/operating/interact(mob/user)
- var/dat = ""
- if(table)
- dat += "Patient information:
"
- if(table.check_patient())
- patient = table.patient
- dat += get_patient_info()
- else
- patient = null
- dat += "No patient detected"
- else
- dat += "Operating table not found."
-
- var/datum/browser/popup = new(user, "op", "Operating Computer", 400, 500)
- popup.set_content(dat)
- popup.open()
-
-/obj/machinery/computer/operating/proc/get_patient_info()
- var/dat = {"
-