mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-25 21:19:00 +01:00
Fixed a few occurrences of "ship" instead of "station", in events
This commit is contained in:
@@ -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.")
|
||||
@@ -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,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
|
||||
|
||||
@@ -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")
|
||||
Reference in New Issue
Block a user