diff --git a/code/modules/station_goals/bluespace_tap.dm b/code/modules/station_goals/bluespace_tap.dm index 3f24e383457..75434f28fa9 100644 --- a/code/modules/station_goals/bluespace_tap.dm +++ b/code/modules/station_goals/bluespace_tap.dm @@ -24,7 +24,7 @@ var/highscore = 0 for(var/obj/machinery/power/bluespace_tap/T in GLOB.machines) highscore = max(highscore, T.total_points) - to_chat(world, "Bluespace Harvester Highscore : [highscore >= goal ? "": ""][highscore]") + to_chat(world, "Bluespace Harvester Highscore: [highscore >= goal ? "": ""][highscore]") if(highscore >= goal) return TRUE return FALSE diff --git a/code/modules/station_goals/station_goal.dm b/code/modules/station_goals/station_goal.dm index 7f13651168b..6dd6fc2f2b2 100644 --- a/code/modules/station_goals/station_goal.dm +++ b/code/modules/station_goals/station_goal.dm @@ -28,9 +28,9 @@ /datum/station_goal/proc/print_result() if(check_completion()) - to_chat(world, "Station Goal : [name] : Completed!") + to_chat(world, "Station Goal: [name]: Completed!") else - to_chat(world, "Station Goal : [name] : Failed!") + to_chat(world, "Station Goal: [name]: Failed!") /datum/station_goal/Destroy() SSticker.mode.station_goals -= src