From 58625abd60e8acd6e9851b38a55182f5c300917c Mon Sep 17 00:00:00 2001 From: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Date: Sat, 27 Oct 2018 06:37:25 +1000 Subject: [PATCH] Fixes a typo in gamemode vote abort message --- code/controllers/subsystems/vote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystems/vote.dm b/code/controllers/subsystems/vote.dm index f4492c7d6f..d42cbe7f63 100644 --- a/code/controllers/subsystems/vote.dm +++ b/code/controllers/subsystems/vote.dm @@ -23,7 +23,7 @@ SUBSYSTEM_DEF(vote) if(mode) time_remaining = round((started_time + duration - world.time)/10) if(mode == VOTE_GAMEMODE && ticker.current_state >= GAME_STATE_SETTING_UP) - to_chat(world, "Gamemode vote aborted: Game has alread ystarted.") + to_chat(world, "Gamemode vote aborted: Game has already started.") reset() return if(time_remaining <= 0)