diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm
index 89142579308..d0a9251fbd3 100644
--- a/code/game/machinery/computer/medical.dm
+++ b/code/game/machinery/computer/medical.dm
@@ -34,11 +34,11 @@
else
return ..()
-/obj/machinery/computer/med_data/interact(mob/user)
+/obj/machinery/computer/med_data/ui_interact(mob/user)
. = ..()
var/dat
- if(src.temp)
- dat = text("[src.temp]
Clear Screen")
+ if(temp)
+ dat = text("[temp]
Clear Screen")
else
dat = text("Confirm Identity: []
", (src.scan ? text("[]", src.scan.name) : "----------"))
if(src.authenticated)
diff --git a/code/modules/research/machinery/_production.dm b/code/modules/research/machinery/_production.dm
index 1d7569464b8..76712dd55e1 100644
--- a/code/modules/research/machinery/_production.dm
+++ b/code/modules/research/machinery/_production.dm
@@ -50,7 +50,7 @@
/obj/machinery/rnd/production/attack_hand(mob/user)
interact(user) //remove this snowflake shit when the refactor of storage components or some other pr that unsnowflakes attack_hand on machinery is in
-/obj/machinery/rnd/production/interact(mob/user)
+/obj/machinery/rnd/production/ui_interact(mob/user)
if(!consoleless_interface)
return ..()
user.set_machine(src)