diff --git a/code/modules/telesci/telesci_computer.dm b/code/modules/telesci/telesci_computer.dm
index 3ba07f6c007..e1682cfbbfc 100644
--- a/code/modules/telesci/telesci_computer.dm
+++ b/code/modules/telesci/telesci_computer.dm
@@ -36,7 +36,7 @@
/obj/machinery/computer/telescience/examine()
..()
- usr << "There are [crystals.len] bluespace crystals in the crystal ports."
+ usr << "There are [crystals.len ? crystals.len : "no"] bluespace crystals in the crystal slots."
/obj/machinery/computer/telescience/initialize()
..()
@@ -66,12 +66,12 @@
/obj/machinery/computer/telescience/attackby(obj/item/W, mob/user)
if(istype(W, /obj/item/bluespace_crystal))
if(crystals.len >= power_options.len)
- user << "There are not enough crystal ports."
+ user << "There are not enough crystal slots."
return
user.drop_item()
crystals += W
W.loc = null
- user.visible_message("[user] inserts a [W] into the [src]'s crystal port.")
+ user.visible_message("[user] inserts [W] into \the [src]'s crystal slot.")
else
..()