Fix indentations (#17481)

* cbt

* AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

* fsadffsda sad

* sadfasd

* jhn

* dsfa

* saf

* safsad

* sda
This commit is contained in:
Fluffy
2023-10-05 10:15:58 +00:00
committed by GitHub
parent 032853824d
commit 4538e2a7cc
471 changed files with 2670 additions and 2597 deletions
+10 -7
View File
@@ -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)
+1 -1
View File
@@ -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)
+18 -18
View File
@@ -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()
+2 -2
View File
@@ -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
+5 -5
View File
@@ -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()