Fixed a few occurrences of "ship" instead of "station", in events

This commit is contained in:
Albert Iordache
2012-01-05 00:44:40 +02:00
parent e141f962c4
commit 86186aa089
4 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -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.")
command_alert("The station has cleared the radiation cloud. It is now safe to leave cover.")
+2 -2
View File
@@ -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( )
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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")
command_alert("The station has cleared the radiation belt", "Medical Alert")