From 86186aa089c6300dbe592487df36ab8f706b1adf Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Thu, 5 Jan 2012 00:44:40 +0200 Subject: [PATCH] Fixed a few occurrences of "ship" instead of "station", in events --- code/game/events/Events/BlowOut.dm | 6 +++--- code/game/events/Events/ElectricalStorm.dm | 4 ++-- code/game/events/Events/PowerOffline.dm | 2 +- code/game/events/Events/RadiationBelt.dm | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/code/game/events/Events/BlowOut.dm b/code/game/events/Events/BlowOut.dm index 66b1b9f49d9..89945d33fcb 100644 --- a/code/game/events/Events/BlowOut.dm +++ b/code/game/events/Events/BlowOut.dm @@ -17,10 +17,10 @@ SpawnEvent() del src return - command_alert("Warning: Ship approaching high-density radiation cloud. Seek cover immediately.") + command_alert("Warning: station approaching high-density radiation cloud. Seek cover immediately.") Tick() if(ActiveFor == 50) - command_alert("Ship has entered radiation cloud. Do not leave cover until it has passed.") + command_alert("Station has entered radiation cloud. Do not leave cover until it has passed.") if(ActiveFor == 100 || ActiveFor == 150) //1/2 and 2/2 f the way after it start proper make peope be half dead mostly for(var/mob/living/carbon/M in world) var/area = M.loc.loc @@ -31,4 +31,4 @@ if(!M.stat) M.radiate(100) Die() - command_alert("The ship has cleared the radiation cloud. It is now safe to leave cover.") \ No newline at end of file + command_alert("The station has cleared the radiation cloud. It is now safe to leave cover.") \ No newline at end of file diff --git a/code/game/events/Events/ElectricalStorm.dm b/code/game/events/Events/ElectricalStorm.dm index 5a7e01fe710..1e7ec6f2966 100644 --- a/code/game/events/Events/ElectricalStorm.dm +++ b/code/game/events/Events/ElectricalStorm.dm @@ -10,7 +10,7 @@ Announce() Lifetime = rand(90, 300) - command_alert("The ship is flying through an electrical storm. Radio communications may be disrupted", "Anomaly Alert") + command_alert("The station is flying through an electrical storm. Radio communications may be disrupted", "Anomaly Alert") for (var/datum/radio_frequency/Freq in radio_controller.frequencies) if(prob(35)) @@ -74,7 +74,7 @@ Die() - command_alert("The ship has cleared the electrical storm. Radio communications restored", "Anomaly Alert") + command_alert("The station has cleared the electrical storm. Radio communications restored", "Anomaly Alert") for (var/datum/radio_frequency/Freq in ScrambledFrequencies) radio_controller.UnregisterScrambler(Freq) DisruptedFrequencies = list( ) diff --git a/code/game/events/Events/PowerOffline.dm b/code/game/events/Events/PowerOffline.dm index e3de22ec7b5..a964732dc34 100644 --- a/code/game/events/Events/PowerOffline.dm +++ b/code/game/events/Events/PowerOffline.dm @@ -1,6 +1,6 @@ /datum/event/power_offline Announce() - command_alert("The ship is performing an automated power system grid check, please stand by.", "Maintenance alert") + command_alert("The station is performing an automated power system grid check, please stand by.", "Maintenance alert") for(var/obj/machinery/power/apc/a in world) if(!a.crit) a.eventoff = 1 diff --git a/code/game/events/Events/RadiationBelt.dm b/code/game/events/Events/RadiationBelt.dm index 3158e945fc0..3184ff094c8 100644 --- a/code/game/events/Events/RadiationBelt.dm +++ b/code/game/events/Events/RadiationBelt.dm @@ -1,7 +1,7 @@ /datum/event/radiation Lifetime = 10 Announce() - command_alert("The ship is now travelling through a radiation belt", "Medical Alert") + command_alert("The station is now travelling through a radiation belt", "Medical Alert") Tick() for(var/mob/living/L in world) @@ -15,4 +15,4 @@ domutcheck(L,null,1) Die() - command_alert("The ship has cleared the radiation belt", "Medical Alert") \ No newline at end of file + command_alert("The station has cleared the radiation belt", "Medical Alert") \ No newline at end of file