From fc49fda5e5479086b7736ce1304a6d01018daeb6 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Sun, 17 Nov 2013 19:25:14 +0000 Subject: [PATCH] Grammar fixes. --- code/modules/telesci/telesci_computer.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ..()