diff --git a/code/game/gamemodes/gang/gang.dm b/code/game/gamemodes/gang/gang.dm
index a8ca50f9b64..ab99aa1058f 100644
--- a/code/game/gamemodes/gang/gang.dm
+++ b/code/game/gamemodes/gang/gang.dm
@@ -228,9 +228,9 @@ var/list/gang_colors_pool = list("red","orange","yellow","green","blue","purple"
//////////////////////////////////////////////////////////////////////
/datum/game_mode/gang/declare_completion(datum/gang/winner)
if(!winner)
- world << "The station was [station_was_nuked ? "destroyed!" : "evacuated before either gang could claim it!"]"
+ world << "The station was [station_was_nuked ? "destroyed!" : "evacuated before a gang could claim it! The station wins!"]"
else
- world << "The [winner.name] Gang successfully performed a hostile takeover of the station!!"
+ world << "The [winner.name] Gang successfully performed a hostile takeover of the station!"
..()
return 1