diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index c275d8f728..c81c1a2662 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -627,7 +627,7 @@ About the new airlock wires panel:
user << "Unable to interface: Connection refused."
return STATUS_CLOSE
- return STATUS_INTERACTIVE
+ return ..()
/obj/machinery/door/airlock/Topic(href, href_list, var/nowindow = 0)
if(..())
diff --git a/code/game/machinery/portable_turret.dm b/code/game/machinery/portable_turret.dm
index 2346a10447..3ad643c360 100644
--- a/code/game/machinery/portable_turret.dm
+++ b/code/game/machinery/portable_turret.dm
@@ -214,7 +214,7 @@
usr << "\The [src] has to be secured first!"
return STATUS_CLOSE
- return STATUS_INTERACTIVE
+ return ..()
/obj/machinery/porta_turret/Topic(href, href_list, var/nowindow = 0)
diff --git a/code/game/machinery/turret_control.dm b/code/game/machinery/turret_control.dm
index c463c3c497..46ea8824e6 100644
--- a/code/game/machinery/turret_control.dm
+++ b/code/game/machinery/turret_control.dm
@@ -79,7 +79,7 @@
if(isLocked(user))
return STATUS_CLOSE
- return STATUS_INTERACTIVE
+ return ..()
/obj/machinery/turretid/attackby(obj/item/weapon/W, mob/user)
if(stat & BROKEN)
diff --git a/code/modules/nano/interaction/base.dm b/code/modules/nano/interaction/base.dm
index 46b11278d6..65a7b273eb 100644
--- a/code/modules/nano/interaction/base.dm
+++ b/code/modules/nano/interaction/base.dm
@@ -9,7 +9,7 @@
return list()
/datum/topic_state/proc/can_use_topic(var/src_object, var/mob/user)
- return STATUS_INTERACTIVE
+ return STATUS_CLOSE
/mob/proc/shared_nano_interaction()
if (src.stat || !client)
diff --git a/code/modules/nano/interaction/default.dm b/code/modules/nano/interaction/default.dm
index d32731fa16..6fd931160d 100644
--- a/code/modules/nano/interaction/default.dm
+++ b/code/modules/nano/interaction/default.dm
@@ -1,4 +1,4 @@
-/var/global/datum/topic_state/default_state = new()
+/var/global/datum/topic_state/default/default_state = new()
/datum/topic_state/default/href_list(var/mob/user)
return list()