From 06339478629e1e6ea28e2c7ff21b687c972497fc Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Wed, 16 Jan 2019 20:41:47 -0800 Subject: [PATCH] Fix grammar in time desynchronizer (#42372) --- code/game/objects/items/devices/desynchronizer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/desynchronizer.dm b/code/game/objects/items/devices/desynchronizer.dm index 98b82222e01..9168aa4384f 100644 --- a/code/game/objects/items/devices/desynchronizer.dm +++ b/code/game/objects/items/devices/desynchronizer.dm @@ -28,7 +28,7 @@ ..() if(world.time < next_use) to_chat(user, "Time left to recharge: [DisplayTimeText(next_use - world.time)]") - to_chat(user, "Alt-click to customize the duration. Current duration: [DisplayTimeText(duration)] seconds.") + to_chat(user, "Alt-click to customize the duration. Current duration: [DisplayTimeText(duration)].") to_chat(user, "Can be used again to interrupt the effect early. The recharge time is the same as the time spent in desync.") /obj/item/desynchronizer/AltClick(mob/living/user)