From de5470289fa80e9f2690fc07042e8716ae3d7b77 Mon Sep 17 00:00:00 2001 From: Mervill Date: Sat, 10 Dec 2016 22:50:48 -0800 Subject: [PATCH] these commas (#22075) --- code/game/area/areas/ruins.dm | 2 +- code/game/asteroid.dm | 4 ++-- code/game/machinery/computer/medical.dm | 2 +- code/game/machinery/computer/security.dm | 2 +- code/game/objects/structures/kitchen_spike.dm | 6 +++--- code/modules/clothing/suits/miscellaneous.dm | 4 ++-- code/modules/crafting/recipes.dm | 9 ++++----- code/modules/food_and_drinks/food/snacks_other.dm | 4 ++-- code/modules/mob/living/carbon/human/human.dm | 2 +- code/modules/paperwork/paperplane.dm | 2 +- 10 files changed, 18 insertions(+), 19 deletions(-) diff --git a/code/game/area/areas/ruins.dm b/code/game/area/areas/ruins.dm index fcca1edcfea..86373fcfaf7 100644 --- a/code/game/area/areas/ruins.dm +++ b/code/game/area/areas/ruins.dm @@ -120,7 +120,7 @@ power_environ = 0 valid_territory = 0 outdoors = 1 - ambientsounds = list('sound/ambience/ambispace.ogg','sound/ambience/title2.ogg',) + ambientsounds = list('sound/ambience/ambispace.ogg','sound/ambience/title2.ogg') blob_allowed = 0 diff --git a/code/game/asteroid.dm b/code/game/asteroid.dm index 4624ac07733..2898af93e26 100644 --- a/code/game/asteroid.dm +++ b/code/game/asteroid.dm @@ -174,7 +174,7 @@ var/global/max_secret_rooms = 6 if(!T) return 0 - room = spawn_room(T,x_size,y_size,walltypes,floor,) //WE'RE FINALLY CREATING THE ROOM + room = spawn_room(T,x_size,y_size,walltypes,floor) //WE'RE FINALLY CREATING THE ROOM if(room)//time to fill it with stuff var/list/emptyturfs = room["floors"] @@ -195,4 +195,4 @@ var/global/max_secret_rooms = 6 emptyturfs -= T //world.log << "The [theme] themed [T.loc] has been created!" - return 1 \ No newline at end of file + return 1 diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index a658237466d..756a9a73067 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -500,7 +500,7 @@ var/counter = 1 while(src.active2.fields[text("com_[]", counter)]) counter++ - src.active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [] [], []
[]", src.authenticated, src.rank, worldtime2text(), time2text(world.realtime, "MMM DD"), year_integer+540, t1,) + src.active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [] [], []
[]", src.authenticated, src.rank, worldtime2text(), time2text(world.realtime, "MMM DD"), year_integer+540, t1) else if(href_list["del_c"]) if((istype(src.active2, /datum/data/record) && src.active2.fields[text("com_[]", href_list["del_c"])])) diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm index 051302dd1a9..9b205250f64 100644 --- a/code/game/machinery/computer/security.dm +++ b/code/game/machinery/computer/security.dm @@ -469,7 +469,7 @@ What a mess.*/ var/counter = 1 while(active2.fields[text("com_[]", counter)]) counter++ - active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [] [], []
[]", src.authenticated, src.rank, worldtime2text(), time2text(world.realtime, "MMM DD"), year_integer+540, t1,) + active2.fields[text("com_[]", counter)] = text("Made by [] ([]) on [] [], []
[]", src.authenticated, src.rank, worldtime2text(), time2text(world.realtime, "MMM DD"), year_integer+540, t1) if("Delete Record (ALL)") if(active1) diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm index 4ab77afb5c0..f88bf1c1eba 100644 --- a/code/game/objects/structures/kitchen_spike.dm +++ b/code/game/objects/structures/kitchen_spike.dm @@ -19,7 +19,7 @@ if(R.get_amount() >= 4) R.use(4) user << "You add spikes to the frame." - var/obj/F = new /obj/structure/kitchenspike(src.loc,) + var/obj/F = new /obj/structure/kitchenspike(src.loc) transfer_fingerprints_to(F) qdel(src) else if(istype(I, /obj/item/weapon/weldingtool)) @@ -140,9 +140,9 @@ /obj/structure/kitchenspike/deconstruct(disassembled = TRUE) if(disassembled) - var/obj/F = new /obj/structure/kitchenspike_frame(src.loc,) + var/obj/F = new /obj/structure/kitchenspike_frame(src.loc) transfer_fingerprints_to(F) else new /obj/item/stack/sheet/metal(src.loc, 4) new /obj/item/stack/rods(loc, 4) - qdel(src) \ No newline at end of file + qdel(src) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 21b10463b8a..805d7b8e62e 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -253,7 +253,7 @@ body_parts_covered = CHEST|GROIN|ARMS //cold_protection = CHEST|GROIN|ARMS //min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT - allowed = list(,) + allowed = list() hooded = 1 hoodtype = /obj/item/clothing/head/ian_hood dog_fashion = /datum/dog_fashion/back @@ -292,7 +292,7 @@ icon_state = "lingspacesuit" item_state = "labcoat" body_parts_covered = CHEST|GROIN|ARMS - allowed = list(,) + allowed = list() hooded = 1 actions_types = list(/datum/action/item_action/toggle_human_head) hoodtype = /obj/item/clothing/head/human_head diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index e70a7fac264..de13207ceb7 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -194,8 +194,7 @@ /datum/crafting_recipe/dragonsbreath name = "Dragonsbreath Shell" result = /obj/item/ammo_casing/shotgun/incendiary/dragonsbreath - reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, - /datum/reagent/phosphorus = 5,) + reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,/datum/reagent/phosphorus = 5) tools = list(/obj/item/weapon/screwdriver) time = 5 category = CAT_AMMO @@ -206,7 +205,7 @@ reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1, /datum/reagent/glycerol = 5, /datum/reagent/toxin/acid = 5, - /datum/reagent/toxin/acid/fluacid = 5,) + /datum/reagent/toxin/acid/fluacid = 5) tools = list(/obj/item/weapon/screwdriver) time = 5 category = CAT_AMMO @@ -258,7 +257,7 @@ reqs = list(/obj/item/weaponcrafting/reciever = 1, /obj/item/pipe = 1, /obj/item/weaponcrafting/stock = 1, - /obj/item/stack/packageWrap = 5,) + /obj/item/stack/packageWrap = 5) tools = list(/obj/item/weapon/screwdriver) time = 100 category = CAT_WEAPON @@ -435,4 +434,4 @@ result = /obj/item/weapon/reagent_containers/food/drinks/sillycup/smallcarton time = 10 reqs = list(/obj/item/stack/sheet/cardboard = 1) - category = CAT_MISC \ No newline at end of file + category = CAT_MISC diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm index 93a2a8b7f8b..bbe7f208f6a 100644 --- a/code/modules/food_and_drinks/food/snacks_other.dm +++ b/code/modules/food_and_drinks/food/snacks_other.dm @@ -322,7 +322,7 @@ desc = "The former skull of a damned human, filled with goliath meat. It has a decorative lava pool made of ketchup and hotsauce." icon_state = "stuffed_legion" bonus_reagents = list("vitamin" = 3, "capsaicin" = 1, "tricordrazine" = 5) - list_reagents = list("nutriment" = 5, "vitamin" = 5, "capsaicin" = 2, "tricordrazine" = 10,) + list_reagents = list("nutriment" = 5, "vitamin" = 5, "capsaicin" = 2, "tricordrazine" = 10) /obj/item/weapon/reagent_containers/food/snacks/powercrepe @@ -417,4 +417,4 @@ desc = "A traditional taco with meat and cheese, minus the rabbit food." icon_state = "taco_plain" bonus_reagents = list("nutriment" = 2, "vitamin" = 2) - list_reagents = list("nutriment" = 3, "vitamin" = 1) \ No newline at end of file + list_reagents = list("nutriment" = 3, "vitamin" = 1) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 9c8c80e4b6b..b805538b3b8 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -485,7 +485,7 @@ var/counter = 1 while(R.fields[text("com_[]", counter)]) counter++ - R.fields[text("com_[]", counter)] = text("Made by [] on [] [], []
[]", allowed_access, worldtime2text(), time2text(world.realtime, "MMM DD"), year_integer+540, t1,) + R.fields[text("com_[]", counter)] = text("Made by [] on [] [], []
[]", allowed_access, worldtime2text(), time2text(world.realtime, "MMM DD"), year_integer+540, t1) usr << "Successfully added comment." return usr << "Unable to locate a data core entry for this person." diff --git a/code/modules/paperwork/paperplane.dm b/code/modules/paperwork/paperplane.dm index be92bde1661..c82baa2cd84 100644 --- a/code/modules/paperwork/paperplane.dm +++ b/code/modules/paperwork/paperplane.dm @@ -103,7 +103,7 @@ H.Weaken(2) H.emote("scream") -/obj/item/weapon/paper/AltClick(mob/living/carbon/user, obj/item/I,) +/obj/item/weapon/paper/AltClick(mob/living/carbon/user, obj/item/I) if((!in_range(src, user)) || usr.stat || usr.restrained()) return user << "You fold [src] into the shape of a plane!"