mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 03:51:49 +01:00
Fix indentations (#17481)
* cbt * AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA * fsadffsda sad * sadfasd * jhn * dsfa * saf * safsad * sda
This commit is contained in:
@@ -41,13 +41,16 @@
|
||||
infectedMachine.shoot_inventory = 1
|
||||
|
||||
if(IsMultiple(activeFor, 12))
|
||||
originMachine.speak(pick("Try our aggressive new marketing strategies!", \
|
||||
"You should buy products to feed your lifestyle obsession!", \
|
||||
"Consume!", \
|
||||
"Your money can buy happiness!", \
|
||||
"Engage direct marketing!", \
|
||||
"Advertising is legalized lying! But don't let that put you off our great deals!", \
|
||||
"You don't want to buy anything? Yeah, well I didn't want to buy your mom either."))
|
||||
originMachine.speak(pick(
|
||||
"Try our aggressive new marketing strategies!", \
|
||||
"You should buy products to feed your lifestyle obsession!", \
|
||||
"Consume!", \
|
||||
"Your money can buy happiness!", \
|
||||
"Engage direct marketing!", \
|
||||
"Advertising is legalized lying! But don't let that put you off our great deals!", \
|
||||
"You don't want to buy anything? Yeah, well I didn't want to buy your mom either."\
|
||||
)
|
||||
)
|
||||
|
||||
/datum/event/brand_intelligence/end(var/faked)
|
||||
for(var/obj/machinery/vending/infectedMachine in infectedVendingMachines)
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
//Only give an ion law/mess with spam filters if it's the station ship that passed through the storm
|
||||
if(station_level)
|
||||
give_ion_law()
|
||||
|
||||
|
||||
for(var/obj/machinery/telecomms/message_server/MS in SSmachinery.all_telecomms)
|
||||
MS.spamfilter.Cut()
|
||||
var/filter_num = rand(1, MS.spamfilter_limit)
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
/datum/event/rescue_pod
|
||||
no_fake = 1
|
||||
var/spawner_name = "rescuepodsurv"
|
||||
var/datum/ghostspawner/human/rescuepodsurv/spawner
|
||||
no_fake = 1
|
||||
var/spawner_name = "rescuepodsurv"
|
||||
var/datum/ghostspawner/human/rescuepodsurv/spawner
|
||||
|
||||
/datum/event/rescue_pod/announce()
|
||||
if(prob(66))
|
||||
command_announcement.Announce("Ship sensors indicate an escape pod inbound to a nearby celestial body. Investigate the situation if necessary and hand off the survivors, if any, to a third party vessel.", new_title="SCCV Horizon Sensor Suite", new_sound = 'sound/AI/commandreport.ogg', zlevels = affecting_z)
|
||||
if(prob(66))
|
||||
command_announcement.Announce("Ship sensors indicate an escape pod inbound to a nearby celestial body. Investigate the situation if necessary and hand off the survivors, if any, to a third party vessel.", new_title="SCCV Horizon Sensor Suite", new_sound = 'sound/AI/commandreport.ogg', zlevels = affecting_z)
|
||||
|
||||
/datum/event/rescue_pod/setup()
|
||||
for(var/datum/event/E in typesof(src))
|
||||
if(is_type_in_list(E, SSevents.finished_events))
|
||||
kill(TRUE)
|
||||
return
|
||||
spawner = SSghostroles.get_spawner(spawner_name)
|
||||
for(var/datum/event/E in typesof(src))
|
||||
if(is_type_in_list(E, SSevents.finished_events))
|
||||
kill(TRUE)
|
||||
return
|
||||
spawner = SSghostroles.get_spawner(spawner_name)
|
||||
|
||||
/datum/event/rescue_pod/start()
|
||||
if(istype(spawner))
|
||||
spawner.enable()
|
||||
if(istype(spawner))
|
||||
spawner.enable()
|
||||
|
||||
/datum/event/rescue_pod/burglar
|
||||
no_fake = 1
|
||||
spawner_name = "burglarpod"
|
||||
no_fake = 1
|
||||
spawner_name = "burglarpod"
|
||||
|
||||
/datum/event/rescue_pod/burglar/announce()
|
||||
if(prob(33)) // Make a silent drop more likely since they're spooky burglar
|
||||
..()
|
||||
if(prob(33)) // Make a silent drop more likely since they're spooky burglar
|
||||
..()
|
||||
|
||||
/datum/event/rescue_pod/burglar/start()
|
||||
if(istype(spawner))
|
||||
spawner.enable()
|
||||
if(istype(spawner))
|
||||
spawner.enable()
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
new /obj/structure/closet/crate/loot(spawn_loc, rarity, quantity)
|
||||
log_and_message_admins("Unusual container spawned at (<a href='?_src_=holder;adminplayerobservecoodjump=1;X=[spawn_loc.x];Y=[spawn_loc.y];Z=[spawn_loc.z]'>JMP</a>)")
|
||||
|
||||
|
||||
spark(spawn_loc, 10, alldirs)
|
||||
|
||||
/datum/event/supply_drop/announce()
|
||||
@@ -26,4 +26,4 @@
|
||||
else if (prob(25))//Announce the transport, but not the location
|
||||
command_announcement.Announce("External transport signature of unknown origin detected aboard [station_name()], precise destination point cannot be determined, please investigate.", "Unknown Object", new_sound = 'sound/AI/strangeobject.ogg', zlevels = affecting_z)
|
||||
//Otherwise, no announcement at all.
|
||||
//Someone will randomly stumble across it, and probably quietly loot it without telling anyone
|
||||
//Someone will randomly stumble across it, and probably quietly loot it without telling anyone
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
/datum/event/visitor
|
||||
no_fake = 1
|
||||
var/datum/ghostspawner/human/visitor/spawner
|
||||
no_fake = 1
|
||||
var/datum/ghostspawner/human/visitor/spawner
|
||||
|
||||
/datum/event/visitor/setup()
|
||||
spawner = SSghostroles.get_spawner("visitor")
|
||||
spawner = SSghostroles.get_spawner("visitor")
|
||||
|
||||
/datum/event/visitor/start()
|
||||
if(istype(spawner))
|
||||
spawner.enable()
|
||||
if(istype(spawner))
|
||||
spawner.enable()
|
||||
|
||||
Reference in New Issue
Block a user