From 0a54f8a7a04a807f1647bff5b0292fe4f9fe5894 Mon Sep 17 00:00:00 2001 From: ForrestWick <54997375+ForrestWick@users.noreply.github.com> Date: Thu, 9 Apr 2020 17:27:18 -0500 Subject: [PATCH 01/10] I'M SORRY MR GITHUB PLS DONT BEAT ME --- code/__DEFINES/inventory.dm | 2 +- code/__HELPERS/game.dm | 2 +- code/datums/diseases/wizarditis.dm | 2 +- code/datums/materials/basemats.dm | 2 +- code/datums/mutations/speech.dm | 4 ++-- code/game/machinery/doors/checkForMultipleDoors.dm | 2 +- code/game/objects/items/manuals.dm | 2 +- code/game/objects/items/storage/boxes.dm | 8 ++++---- code/game/objects/structures/signs/signs_plaques.dm | 3 +-- code/modules/admin/secrets.dm | 6 +++--- code/modules/food_and_drinks/food/snacks_meat.dm | 8 ++++---- code/modules/food_and_drinks/recipes/processor_recipes.dm | 2 +- .../food_and_drinks/recipes/tablecraft/recipes_egg.dm | 2 +- .../food_and_drinks/recipes/tablecraft/recipes_meat.dm | 2 +- .../food_and_drinks/recipes/tablecraft/recipes_misc.dm | 4 ++-- .../food_and_drinks/recipes/tablecraft/recipes_pastry.dm | 2 +- .../food_and_drinks/recipes/tablecraft/recipes_pizza.dm | 2 +- .../food_and_drinks/recipes/tablecraft/recipes_salad.dm | 2 +- .../food_and_drinks/recipes/tablecraft/recipes_soup.dm | 2 +- .../recipes/tablecraft/recipes_spaghetti.dm | 4 ++-- code/modules/jobs/job_types/chaplain.dm | 2 +- code/modules/lighting/lighting_corner.dm | 2 +- .../mob/living/carbon/alien/humanoid/update_icons.dm | 2 +- 23 files changed, 34 insertions(+), 35 deletions(-) diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm index f4954f8f05..7f3f461f9b 100644 --- a/code/__DEFINES/inventory.dm +++ b/code/__DEFINES/inventory.dm @@ -155,7 +155,7 @@ //flags for covering body parts #define GLASSESCOVERSEYES (1<<0) -#define MASKCOVERSEYES (1<<1) // get rid of some of the other retardation in these flags +#define MASKCOVERSEYES (1<<1) // get rid of some of the other [censored for github] in these flags #define HEADCOVERSEYES (1<<2) // feel free to realloc these numbers for other purposes #define MASKCOVERSMOUTH (1<<3) // on other items, these are just for mask/head #define HEADCOVERSMOUTH (1<<4) diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index 7f5035347c..6b9b856bec 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -183,7 +183,7 @@ return -// Better recursive loop, technically sort of not actually recursive cause that shit is retarded, enjoy. +// Better recursive loop, technically sort of not actually recursive cause that shit is [censored for github], enjoy. //No need for a recursive limit either /proc/recursive_mob_check(atom/O,client_check=1,sight_check=1,include_radio=1) diff --git a/code/datums/diseases/wizarditis.dm b/code/datums/diseases/wizarditis.dm index 71a5bcb99e..e769f466b9 100644 --- a/code/datums/diseases/wizarditis.dm +++ b/code/datums/diseases/wizarditis.dm @@ -9,7 +9,7 @@ viable_mobtypes = list(/mob/living/carbon/human) disease_flags = CAN_CARRY|CAN_RESIST|CURABLE permeability_mod = 0.75 - desc = "Some speculate that this virus is the cause of the Space Wizard Federation's existence. Subjects affected show the signs of mental retardation, yelling obscure sentences or total gibberish. On late stages subjects sometime express the feelings of inner power, and, cite, 'the ability to control the forces of cosmos themselves!' A gulp of strong, manly spirits usually reverts them to normal, humanlike, condition." + desc = "Some speculate that this virus is the cause of the Space Wizard Federation's existence. Subjects affected show the signs of mental hysteria, yelling obscure sentences or total gibberish. On late stages subjects sometime express the feelings of inner power, and, cite, 'the ability to control the forces of cosmos themselves!' A gulp of strong, manly spirits usually reverts them to normal, humanlike, condition." severity = DISEASE_SEVERITY_HARMFUL required_organs = list(/obj/item/bodypart/head) diff --git a/code/datums/materials/basemats.dm b/code/datums/materials/basemats.dm index c006f97bff..c3d0deeac6 100644 --- a/code/datums/materials/basemats.dm +++ b/code/datums/materials/basemats.dm @@ -19,7 +19,7 @@ integrity_modifier = 0.1 sheet_type = /obj/item/stack/sheet/glass value_per_unit = 0.0025 - armor_modifiers = list("melee" = 0.2, "bullet" = 0.2, "laser" = 0, "energy" = 1, "bomb" = 0, "bio" = 0.2, "rad" = 0.2, "fire" = 1, "acid" = 0.2) // yeah ok retard + armor_modifiers = list("melee" = 0.2, "bullet" = 0.2, "laser" = 0, "energy" = 1, "bomb" = 0, "bio" = 0.2, "rad" = 0.2, "fire" = 1, "acid" = 0.2) // yeah ok /* Color matrices are like regular colors but unlike with normal colors, you can go over 255 on a channel. diff --git a/code/datums/mutations/speech.dm b/code/datums/mutations/speech.dm index 56ce3533fc..8d57f3d9c2 100644 --- a/code/datums/mutations/speech.dm +++ b/code/datums/mutations/speech.dm @@ -79,7 +79,7 @@ message = " [message] " //Time for a friendly game of SS13 message = replacetext(message," stupid "," smart ") - message = replacetext(message," retard "," genius ") + message = replacetext(message," idiot "," genius ") message = replacetext(message," unrobust "," robust ") message = replacetext(message," dumb "," smart ") message = replacetext(message," awful "," great ") @@ -263,7 +263,7 @@ message = replacetext(message," thank you "," thank you, thank you very much ") message = replacetext(message," what are you "," whatcha ") message = replacetext(message," yes ",pick(" sure", "yea ")) - message = replacetext(message," faggot "," square ") + message = replacetext(message," dumbass "," square ") message = replacetext(message," muh valids "," getting my kicks ") speech_args[SPEECH_MESSAGE] = trim(message) diff --git a/code/game/machinery/doors/checkForMultipleDoors.dm b/code/game/machinery/doors/checkForMultipleDoors.dm index 3c1364dfdd..35a944c965 100644 --- a/code/game/machinery/doors/checkForMultipleDoors.dm +++ b/code/game/machinery/doors/checkForMultipleDoors.dm @@ -12,5 +12,5 @@ for(var/obj/machinery/door/D in locate(src.x,src.y,src.z)) if(!istype(D, /obj/machinery/door/window) && D.density) return 0 - //There are no false wall checks because that would be fucking retarded + //There are no false wall checks because that would be fucking return 1 \ No newline at end of file diff --git a/code/game/objects/items/manuals.dm b/code/game/objects/items/manuals.dm index 210c3d0da0..6c01e68a48 100644 --- a/code/game/objects/items/manuals.dm +++ b/code/game/objects/items/manuals.dm @@ -172,7 +172,7 @@ It can cook multiple items at once.

Processor:

- Use it to process certain ingredients (meat into faggot, doughslice into spaghetti, potato into fries,etc...) + Use it to process certain ingredients (meat into meatball, doughslice into spaghetti, potato into fries,etc...)

Gibber:

Stuff an animal in it to grind it into meat. diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index a67757a535..515c39ffcb 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -953,7 +953,7 @@ /obj/item/reagent_containers/food/snacks/grown/corn, /obj/item/reagent_containers/food/snacks/grown/mushroom/plumphelmet, /obj/item/reagent_containers/food/snacks/grown/mushroom/chanterelle, - /obj/item/reagent_containers/food/snacks/faggot, + /obj/item/reagent_containers/food/snacks/meatball, /obj/item/reagent_containers/food/snacks/grown/citrus/orange, /obj/item/reagent_containers/food/snacks/grown/citrus/lemon, /obj/item/reagent_containers/food/snacks/grown/citrus/lime, @@ -1005,7 +1005,7 @@ /obj/item/storage/box/ingredients/italian/PopulateContents() for(var/i in 1 to 3) new /obj/item/reagent_containers/food/snacks/grown/tomato(src) - new /obj/item/reagent_containers/food/snacks/faggot(src) + new /obj/item/reagent_containers/food/snacks/meatball(src) new /obj/item/reagent_containers/food/drinks/bottle/wine(src) /obj/item/storage/box/ingredients/vegetarian @@ -1028,7 +1028,7 @@ new /obj/item/reagent_containers/food/snacks/grown/potato(src) new /obj/item/reagent_containers/food/snacks/grown/tomato(src) new /obj/item/reagent_containers/food/snacks/grown/corn(src) - new /obj/item/reagent_containers/food/snacks/faggot(src) + new /obj/item/reagent_containers/food/snacks/meatball(src) /obj/item/storage/box/ingredients/fruity theme_name = "fruity" @@ -1084,7 +1084,7 @@ new /obj/item/reagent_containers/food/snacks/carpmeat(src) new /obj/item/reagent_containers/food/snacks/meat/slab/xeno(src) new /obj/item/reagent_containers/food/snacks/meat/slab/corgi(src) - new /obj/item/reagent_containers/food/snacks/faggot(src) + new /obj/item/reagent_containers/food/snacks/meatball(src) /obj/item/storage/box/ingredients/exotic theme_name = "exotic" diff --git a/code/game/objects/structures/signs/signs_plaques.dm b/code/game/objects/structures/signs/signs_plaques.dm index 8a20456911..78c88cd09d 100644 --- a/code/game/objects/structures/signs/signs_plaques.dm +++ b/code/game/objects/structures/signs/signs_plaques.dm @@ -23,7 +23,7 @@ /obj/structure/sign/plaques/kiddie name = "\improper AI developers plaque" - desc = "Next to the extremely long list of names and job titles, there is a drawing of a little child. The child appears to be retarded. Beneath the image, someone has scratched the word \"PACKETS\"." + desc = "Next to the extremely long list of names and job titles, there is a drawing of a little child. The child appears to be stupid. Beneath the image, someone has scratched the word \"PACKETS\"." icon_state = "kiddieplaque" /obj/structure/sign/plaques/kiddie/badger @@ -46,4 +46,3 @@ name = "Mr. Deempisi portrait" desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'" icon_state = "monkey_painting" - \ No newline at end of file diff --git a/code/modules/admin/secrets.dm b/code/modules/admin/secrets.dm index 255b1a10fa..c70db70ee8 100644 --- a/code/modules/admin/secrets.dm +++ b/code/modules/admin/secrets.dm @@ -61,7 +61,7 @@ Summon Events (Toggle)
There can only be one!
There can only be one! (40-second delay)
- Make all players retarded
+ Make all players stupid
Egalitarian Station Mode
Break all lights
Fix all lights
@@ -452,14 +452,14 @@ var/datum/round_event/disease_outbreak/DO = E DO.virus_type = virus - if("retardify") + if("stupify") if(!check_rights(R_FUN)) return SSblackbox.record_feedback("nested tally", "admin_secrets_fun_used", 1, list("Mass Braindamage")) for(var/mob/living/carbon/human/H in GLOB.player_list) to_chat(H, "You suddenly feel stupid.") H.adjustOrganLoss(ORGAN_SLOT_BRAIN, 60, 80) - message_admins("[key_name_admin(usr)] made everybody retarded") + message_admins("[key_name_admin(usr)] made everybody stupid") if("eagles")//SCRAW if(!check_rights(R_FUN)) diff --git a/code/modules/food_and_drinks/food/snacks_meat.dm b/code/modules/food_and_drinks/food/snacks_meat.dm index a7cad1d7bb..2c29419f22 100644 --- a/code/modules/food_and_drinks/food/snacks_meat.dm +++ b/code/modules/food_and_drinks/food/snacks_meat.dm @@ -132,10 +132,10 @@ tastes = list("meat" = 1, "salmon" = 1) foodtype = MEAT | ALCOHOL -/obj/item/reagent_containers/food/snacks/faggot - name = "faggot" - desc = "A great meal all round. Not a cord of wood." - icon_state = "faggot" +/obj/item/reagent_containers/food/snacks/meatball + name = "meatball" + desc = "MAMA MIA DAS A SPICY" + icon_state = "meatball" list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 1) filling_color = "#800000" tastes = list("meat" = 1) diff --git a/code/modules/food_and_drinks/recipes/processor_recipes.dm b/code/modules/food_and_drinks/recipes/processor_recipes.dm index fbd3f57323..1e3afd1cf5 100644 --- a/code/modules/food_and_drinks/recipes/processor_recipes.dm +++ b/code/modules/food_and_drinks/recipes/processor_recipes.dm @@ -6,7 +6,7 @@ /datum/food_processor_process/meat input = /obj/item/reagent_containers/food/snacks/meat/slab - output = /obj/item/reagent_containers/food/snacks/faggot + output = /obj/item/reagent_containers/food/snacks/meatball /datum/food_processor_process/bacon input = /obj/item/reagent_containers/food/snacks/meat/rawcutlet diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm index 108307119d..e8640886c2 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm @@ -67,7 +67,7 @@ /datum/reagent/consumable/sodiumchloride = 1, /datum/reagent/consumable/blackpepper = 1, /obj/item/reagent_containers/food/snacks/boiledegg = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 + /obj/item/reagent_containers/food/snacks/meatball = 1 ) result = /obj/item/reagent_containers/food/snacks/scotchegg subcategory = CAT_EGG \ No newline at end of file diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm index efb773159d..e7fdeffe14 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm @@ -129,7 +129,7 @@ /datum/crafting_recipe/food/sausage name = "Sausage" reqs = list( - /obj/item/reagent_containers/food/snacks/faggot = 1, + /obj/item/reagent_containers/food/snacks/meatball = 1, /obj/item/reagent_containers/food/snacks/meat/cutlet = 2 ) result = /obj/item/reagent_containers/food/snacks/sausage diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm index 528fc61156..aa4d6e9f51 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm @@ -37,7 +37,7 @@ name = "Raw Khinkali" reqs = list( /obj/item/reagent_containers/food/snacks/doughslice = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 + /obj/item/reagent_containers/food/snacks/meatball = 1 ) result = /obj/item/reagent_containers/food/snacks/rawkhinkali subcategory = CAT_MISCFOOD @@ -47,7 +47,7 @@ reqs = list( /datum/reagent/consumable/soysauce = 5, /obj/item/reagent_containers/food/snacks/bun = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1, + /obj/item/reagent_containers/food/snacks/meatball = 1, /obj/item/reagent_containers/food/snacks/grown/cabbage = 1 ) result = /obj/item/reagent_containers/food/snacks/meatbun diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm index 8a393476a2..6c418ab612 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm @@ -177,7 +177,7 @@ name = "Donkpocket" reqs = list( /obj/item/reagent_containers/food/snacks/pastrybase = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 + /obj/item/reagent_containers/food/snacks/meatball = 1 ) result = /obj/item/reagent_containers/food/snacks/donkpocket subcategory = CAT_PASTRY diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm index 21112a4a4f..a07815a030 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm @@ -71,7 +71,7 @@ name = "Sassysage pizza" reqs = list( /obj/item/reagent_containers/food/snacks/pizzabread = 1, - /obj/item/reagent_containers/food/snacks/faggot = 3, + /obj/item/reagent_containers/food/snacks/meatball = 3, /obj/item/reagent_containers/food/snacks/cheesewedge = 1, /obj/item/reagent_containers/food/snacks/grown/tomato = 1 ) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm index 4c942a0c2d..90036c0e2a 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm @@ -80,7 +80,7 @@ /obj/item/reagent_containers/glass/bowl = 1, /obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 3, /obj/item/reagent_containers/food/snacks/grown/potato = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1 + /obj/item/reagent_containers/food/snacks/meatball = 1 ) result = /obj/item/reagent_containers/food/snacks/salad/validsalad subcategory = CAT_SALAD diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm index ac49537adf..ae8bd6a49c 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm @@ -104,7 +104,7 @@ reqs = list( /datum/reagent/water = 10, /obj/item/reagent_containers/glass/bowl = 1, - /obj/item/reagent_containers/food/snacks/faggot = 1, + /obj/item/reagent_containers/food/snacks/meatball = 1, /obj/item/reagent_containers/food/snacks/grown/carrot = 1, /obj/item/reagent_containers/food/snacks/grown/potato = 1 ) diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm index 12020a6241..722d91e86c 100644 --- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm +++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm @@ -15,7 +15,7 @@ name = "Spaghetti meatball" reqs = list( /obj/item/reagent_containers/food/snacks/boiledspaghetti = 1, - /obj/item/reagent_containers/food/snacks/faggot = 2 + /obj/item/reagent_containers/food/snacks/meatball = 2 ) result = /obj/item/reagent_containers/food/snacks/meatballspaghetti subcategory = CAT_SPAGHETTI @@ -24,7 +24,7 @@ name = "Spesslaw" reqs = list( /obj/item/reagent_containers/food/snacks/boiledspaghetti = 1, - /obj/item/reagent_containers/food/snacks/faggot = 4 + /obj/item/reagent_containers/food/snacks/meatball = 4 ) result = /obj/item/reagent_containers/food/snacks/spesslaw subcategory = CAT_SPAGHETTI diff --git a/code/modules/jobs/job_types/chaplain.dm b/code/modules/jobs/job_types/chaplain.dm index 4aed218cf9..56bc70b990 100644 --- a/code/modules/jobs/job_types/chaplain.dm +++ b/code/modules/jobs/job_types/chaplain.dm @@ -73,7 +73,7 @@ B.name = "Fluorescent Incandescence" if("lol", "wtf", "gay", "penis", "ass", "poo", "badmin", "shitmin", "deadmin", "cock", "cocks", "meme", "memes") B.name = pick("Woodys Got Wood: The Aftermath", "War of the Cocks", "Sweet Bro and Hella Jef: Expanded Edition","F.A.T.A.L. Rulebook") - H.adjustOrganLoss(ORGAN_SLOT_BRAIN, 100) // starts off retarded as fuck + H.adjustOrganLoss(ORGAN_SLOT_BRAIN, 100) // starts off [censored for github] as fuck if("monkeyism","apism","gorillism","primatism") B.name = pick("Going Bananas", "Bananas Out For Harambe") if("mormonism") diff --git a/code/modules/lighting/lighting_corner.dm b/code/modules/lighting/lighting_corner.dm index 1de896520d..d4530acd04 100644 --- a/code/modules/lighting/lighting_corner.dm +++ b/code/modules/lighting/lighting_corner.dm @@ -138,6 +138,6 @@ GLOBAL_LIST_INIT(LIGHTING_CORNER_DIAGONAL, list(NORTHEAST, SOUTHEAST, SOUTHWEST, if (!force) return QDEL_HINT_LETMELIVE - stack_trace("Ok, Look, /tg/, I need you to find whatever fucker decided to call qdel on a fucking lighting corner, then tell him very nicely and politely that he is 100% retarded and needs his head checked. Thanks. Send them my regards by the way.") + stack_trace("Ok, Look, /tg/, I need you to find whatever fucker decided to call qdel on a fucking lighting corner, then tell him very nicely and politely that he is 100% stupid and needs his head checked. Thanks. Send them my regards by the way.") return ..() diff --git a/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm b/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm index ca62df0b57..20d8492d0f 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm @@ -53,7 +53,7 @@ /mob/living/carbon/alien/humanoid/update_transform() //The old method of updating lying/standing was update_icons(). Aliens still expect that. if(lying > 0) - lying = 90 //Anything else looks retarded + lying = 90 //Anything else looks [censored for github] ..() update_icons() From 430d179c733aa2bc2b84e92e5293f5c754b7fa7c Mon Sep 17 00:00:00 2001 From: ForrestWick <54997375+ForrestWick@users.noreply.github.com> Date: Thu, 9 Apr 2020 17:38:06 -0500 Subject: [PATCH 02/10] whoops, forgot the dmi --- icons/obj/food/food.dmi | Bin 73492 -> 73495 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/food/food.dmi b/icons/obj/food/food.dmi index 37173beadb5cf67e0ae66e2b4227b2fac85455f4..f5e2dc56928c3f6db0db6e7e7b5914dc56eab3d5 100644 GIT binary patch delta 1504 zcmV<61t0p9z66)P1dt?ux_VStbVOxyV{&P5bZKvH004NLm733P961ig&-PPvX0Ayv z@g%z^Uv?5KjK$3C8x$ysRZ>btYAI=I+E2fSw%t8{9DR+30UP*9&7vssBg@|({`KYG z55F8f|NL?yQ(xIg@OcY6~#EwP>csErzbAMOv|ZA{Hk&fneM zgk<$_fB0~FGaGGu`uzoTYN=@*az3U4P$c0vq&Ah6kG?w|qP#2!^R9F&8QSih%N+xa z1H`G3EZCMu&RKT|U5r^UJ1L0+ciqx9w$w-UnyE43{Wa|g;eyIq)UVveF-gJLr!uy* z>D-6VoNAm?&cHW+Z%kvzv^5q8{hdW2&@mYV#=h{@Yc$oZ=Hw9{ZPYL;YDs}HJ9e7q z%;St;I?tI=y6Q2rv z!bj$sc#0}38<=}1uQqmERtg*(tsIIrYC2p|BInJe>U$c0$A)g4xwWx7W=kB9{kS$uuRctYCk31GyEIy`8fySpfry5BDCb>@4O%^Cc zbVuUJ3UI1_H74L#PZcBc_-4M4UUdbO)rse2dF`=&xV;IS>3Fz5e0ckp&tJYc32dY0 zoQeWYdNDE5E7$HHXCv?4zI^^r_kkj_F*VnL`@qy{V_K2Y859s$weilO>JbzLjcwzs zf=Lrk5)ub0h<5jpx$+(vxNJ`>2Oxp@NIS{aYXq`?m|E+?lUGH`{ZGIC`k#j{Z{EBa z8)4+v*E8cyRxN+7O>WEKs_ARIgy;?#L@3GRUidwat-N8B4H>Eyu8FnC6tB zI%hhz(P;O*Ax-lOIeE=$)Dqw>aBs(C->7IGFEqgWyH9UFynp_=`$MQVZ(1u-LaW#2 zBhqS|Q)?F)H**CgcBgu5EnpU2hE; z=A^}C5@_(>TVq4Vj3=5yQ>wsFQj&^)C3$t8@Fx`OV9)4;ye=vvo>s2Y2OPb_(I3Y? zb61$){S`)Bz+*Em;ISDOHjmA?fX8MSHEb9fw7bkOeu_*)?v*4=rDUGKmpMs}(~I&% z9x$mC^5d*sn0!Q9!DnzIWY%sk{)Vso`#7*J@J134Wp`fU)H(2<7)}dT>$P2Dl+(v?@SO3&BF8<| zYiu$V%GW&gSMutvIk=T`zUHA$ix&Ounn22Z7vSm|xs9nAjidCLg+L=&6qz{n*4R|2 zwgg;9OMsU*vKlvn-lt!%uA2bz=VFC@d&&2QFTZ>~eE#|2_W!3A_uWWmsDy*$1-Ik{ G0WcZwzUs69 delta 1501 zcmV<31tR*Fz66xM1dt?uw|Z1qbVOxyV{&P5bZKvH004NLm733P95)Qc&-PPnnrjj? zPST!yX%iGi(X?+c;7FX2G8$5)q)f+8-^1G8?H@Q0M%efFUK#};pORXvk@2-v9MR}eP=5=nC6SUpyF*OV{_7JB= zGGklroRV%3IvcZKc2blP+;xp>-%=OUX`;%A_m{Xug!3v(R<|$^ljMzE%zaC%POS?~ zv4kn61bp+#)Q3!eYh{7ZzgQFkM<#>7&}Lp+38uQ16dmHDl`3XM$%_ni7iBre26p8BUb#S%z7Cb^E)O=c)Xw2{P- zW#Cjxh`_Ob9xF!T{>^+Mo$3N8t0T|z{M=)Ge|_aS(SEo+ynXeb&wsu+3T&gM6teS+!K8^J z@sT}cM7z7dTzCr%T($?6J&?d$pp9g0B>-7Wtv2C*!KotU{^#F+|Ml+Eix)5YMi{x} z`OJ8gRP(=UlT*T_{7C(@TiQ$pK3a6_jA<<-ev2*ujb=>jO--E|5O^uB3cd$hp~8DnPlKa=X1V+0XRMEj zpx0J^tpNgEP^V5!fcEWy1xmLI>J)6;M{){?400-9Z5zp{^d;EYmVMaN4^vD~oipv* zXtcRjk*4{H9GoUKsu6G(xcA6p->7Ks&oscBn-8zvzIpt)`A4W%XIctULW|St0@7-n zQfm|GHg%etxYtYb5aKx6F4gkd-^mmQ^1PRIplg3DZX6mBC4$R0-} zpl(pAD^mh#Qz|u+6^Z?Gb3vVYM0ZM?XRbqPYk$`Vwp2hsJ+Mw~?rX_MBjP<-KOF~u z72c5qb_4-qXHAj7BK*LDy+v))#C}LTKU)cYe5QFjn^J@*3#Gmvmq0F1Zq`Rvrn&{D zIymU;J;5{UtQ(s%Muyf@)hh6ArjqO5{z^`VoCpv-{fuKIgYln@OYPtLvDJzUbK*QE z5@_(>YGp&mj7OS%RVu(xQlg4Qd3K(E@GlhWU{C0Pye`TljutM%TO7T?(RY2HjTe~U z+yzFQ!F@B%;Jz7WHuudqgZpL}RcsjQwT+2k{1};t+{;mza!x#eFLR>o!;|tv9x$q8 za{a8GnOs0x!AEc z0#*|ZQ&Ob0KHBUQC<;zZknlV1d7NV+`uVj>y2i;g!TA%I>se)Nus=iQ%|lu~zCOMvZ#k51tdAS!Ca0xx^+@ zp>)Ype<7#iB?q@~N|!uz)~sJkFA1d7HUX}#(YP{Iqkfb=vJhw_vmz6xRx6tdl^TKT zXc6%8N>;*3(EIc=c5Ehq{5e};-(K?a@agl%!^hw5uKxyo`S%mZ+P>$5=LNUt1pzP_ D@Uii$ From 873e67f79cc495409013cd18ea4a6f0de469594e Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Mon, 13 Apr 2020 14:57:47 +0200 Subject: [PATCH 03/10] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index a1deb8ad30..ad30bde78d 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -30,6 +30,7 @@ /obj/item/clothing/head/helmet/space/hardsuit/attack_self(mob/user) on = !on + update_icon() user.update_inv_head() //so our mob-overlays update if(on) set_light(brightness_on) From 5765ceb316cc91dd5513834edaf8198e6e336477 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Mon, 13 Apr 2020 15:02:01 +0200 Subject: [PATCH 04/10] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index ad30bde78d..42a162d730 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -30,8 +30,7 @@ /obj/item/clothing/head/helmet/space/hardsuit/attack_self(mob/user) on = !on - update_icon() - user.update_inv_head() //so our mob-overlays update + update_icon() //the mob overlay update is already done by the update_icon_updates_onmob element. if(on) set_light(brightness_on) else From 39e6541ccde19d66f8707ec628fbf28bbba57192 Mon Sep 17 00:00:00 2001 From: Linzolle Date: Tue, 14 Apr 2020 17:54:07 -0500 Subject: [PATCH 05/10] remove bad words --- _maps/RandomRuins/SpaceRuins/bus.dmm | 18 +++++++++--------- code/__DEFINES/inventory.dm | 2 +- code/__HELPERS/game.dm | 2 +- .../carbon/alien/humanoid/update_icons.dm | 4 ++-- html/archivedchangelog.html | 14 +++++++------- strings/insult.json | 1 - strings/ion_laws.json | 2 +- strings/names/death_commando.txt | 4 ++-- strings/traumas.json | 7 +------ 9 files changed, 24 insertions(+), 30 deletions(-) diff --git a/_maps/RandomRuins/SpaceRuins/bus.dmm b/_maps/RandomRuins/SpaceRuins/bus.dmm index c731bcac5e..2f5c14191b 100644 --- a/_maps/RandomRuins/SpaceRuins/bus.dmm +++ b/_maps/RandomRuins/SpaceRuins/bus.dmm @@ -66,7 +66,7 @@ /obj/structure/fluff/bus/passable/seat{ icon_state = "backseat" }, -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, /turf/open/floor/plasteel/airless/dark{ icon_state = "bus" }, @@ -90,7 +90,7 @@ /obj/structure/fluff/bus/passable/seat{ icon_state = "backseat" }, -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless/dark{ icon_state = "bus" @@ -158,9 +158,9 @@ "aA" = ( /obj/structure/fluff/bus/passable, /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/faggot, -/obj/item/reagent_containers/food/snacks/faggot, -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, +/obj/item/reagent_containers/food/snacks/meatball, +/obj/item/reagent_containers/food/snacks/meatball, /turf/open/floor/plasteel/airless/dark{ icon_state = "bus" }, @@ -182,7 +182,7 @@ /area/ruin/unpowered/no_grav) "aD" = ( /obj/structure/fluff/bus/passable, -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, /turf/open/floor/plasteel/airless/dark{ icon_state = "bus" }, @@ -256,7 +256,7 @@ /turf/open/floor/plating/asteroid/airless, /area/ruin/unpowered/no_grav) "aP" = ( -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, /turf/open/floor/plating/asteroid/airless, /area/ruin/unpowered/no_grav) "aQ" = ( @@ -282,7 +282,7 @@ icon_state = "backseat" }, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, /turf/open/floor/plasteel/airless/dark{ icon_state = "bus" }, @@ -318,7 +318,7 @@ "aZ" = ( /obj/structure/fluff/bus/passable, /obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/snacks/faggot, +/obj/item/reagent_containers/food/snacks/meatball, /turf/open/floor/plasteel/airless/dark{ icon_state = "bus" }, diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm index 5e324fdf5f..f42d199d0d 100644 --- a/code/__DEFINES/inventory.dm +++ b/code/__DEFINES/inventory.dm @@ -147,7 +147,7 @@ //flags for covering body parts #define GLASSESCOVERSEYES (1<<0) -#define MASKCOVERSEYES (1<<1) // get rid of some of the other [censored for github] in these flags +#define MASKCOVERSEYES (1<<1) // get rid of some of the other stupidity in these flags #define HEADCOVERSEYES (1<<2) // feel free to realloc these numbers for other purposes #define MASKCOVERSMOUTH (1<<3) // on other items, these are just for mask/head #define HEADCOVERSMOUTH (1<<4) diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index 6b9b856bec..170d93c31f 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -183,7 +183,7 @@ return -// Better recursive loop, technically sort of not actually recursive cause that shit is [censored for github], enjoy. +// Better recursive loop, technically sort of not actually recursive cause that shit is stupid, enjoy. //No need for a recursive limit either /proc/recursive_mob_check(atom/O,client_check=1,sight_check=1,include_radio=1) diff --git a/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm b/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm index 20d8492d0f..9563959ebc 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/update_icons.dm @@ -53,7 +53,7 @@ /mob/living/carbon/alien/humanoid/update_transform() //The old method of updating lying/standing was update_icons(). Aliens still expect that. if(lying > 0) - lying = 90 //Anything else looks [censored for github] + lying = 90 //Anything else looks silly ..() update_icons() @@ -95,4 +95,4 @@ hands += mutable_appearance(alt_inhands_file, "[itm_state][caste]_r", -HANDS_LAYER) overlays_standing[HANDS_LAYER] = hands - apply_overlay(HANDS_LAYER) \ No newline at end of file + apply_overlay(HANDS_LAYER) diff --git a/html/archivedchangelog.html b/html/archivedchangelog.html index 6b0fb6c6e6..b586ae9d51 100644 --- a/html/archivedchangelog.html +++ b/html/archivedchangelog.html @@ -6394,7 +6394,7 @@ start of their shift.
  • Greek Rioter updated:
      -
    • Removed dumb/badly sprited drinks for barman. This is for you, people that love to play barman. Your job is now non-retarded again. EDIT: FIXED DRINK MIXING
    • +
    • Removed dumb/badly sprited drinks for barman. This is for you, people that love to play barman. Your job is now non-stupid again. EDIT: FIXED DRINK MIXING
    • More info here: rev2136
  • @@ -7315,7 +7315,7 @@ resistance (only slight don't run into a fire).
  • HoS, Warden and Security Officer starting equipment changed.
  • New crate, which contains armored vests and helmets. Requires security access, costs 20.
  • Miner lockers now contain meson scanners and mining jumpsuits.
  • -
  • Food crate now contains milk, instead of faggots. Lightbulb crates cost reduced to 5. Riot crates cost reduced to 20. Emergency crate contains 2 med bots instead of floor bots. Hydroponics crate no longer contains weed spray, pest spray. It's latex gloves were replaced with leather ones and an apron.
  • +
  • Food crate now contains milk, instead of meatballs. Lightbulb crates cost reduced to 5. Riot crates cost reduced to 20. Emergency crate contains 2 med bots instead of floor bots. Hydroponics crate no longer contains weed spray, pest spray. It's latex gloves were replaced with leather ones and an apron.
  • Added chef's apron (can hold a kitchen knife) and a new service borg sprite.
  • Autolathe can now construct kitchen knives.
  • Biosuit and syndicate space suits can now fit into backpacks.
  • @@ -8139,7 +8139,7 @@ resistance (only slight don't run into a fire). -Meatbread: 3 meats (whatever meats) 3 flour 3 cheese. Can be sliced. Cheese_amount is actually displayed on the microwave.
  • Profession-special radio channels now have color.
  • -
  • AI card not retardedly lethal anymore, for anyone that didn't notice
  • +
  • AI card not stupidly lethal anymore, for anyone that didn't notice
  • HYDROPONICS OVERHAUL, credit goes to Skie and Numbers. Wood doesn't have the entity so the tower caps cannot be harvested. For now.
  • Bar is now barman-only, access-wise. No more shall the entire station trump inside the bar and choke the monkey.
  • Prepping ground for Barman update (SPRITE ME SOME GODDAMN BOTTLES)
  • @@ -8496,7 +8496,7 @@ resistance (only slight don't run into a fire). New spell: Mindblast
    • - Causes brain damage, progressively causing other players to become even more retarded. + Causes brain damage, progressively causing other players to become even more stupid.
    @@ -8693,7 +8693,7 @@ resistance (only slight don't run into a fire).
  • BACKUP BACKUP TELL ME WHAT YOU GONNA DO NOW Changed the monkey name code. Re-did my antimatter engine code so it actually puts out power now
  • dumb as fuck change, whoever did that, it already spawn ()&#39;s inside the proc - code, whoever did that, you are a faggot and should read code before you modify + code, whoever did that, you are a fool and should read code before you modify it
  • Fixed a bug that gave everyone modify ticker variables you silly sausage.
  • Sorted the AIs track list.
  • @@ -8896,7 +8896,7 @@ resistance (only slight don't run into a fire).
  • Fixed the syndicate nuclear victory bug
  • Wizard now spawns with wizard outfit which he must wear to cast spells
  • Blood bug fixes
  • -
  • Fixed a retarded bug that meant I didn't have the power to kick admins
  • +
  • Fixed a dumb bug that meant I didn't have the power to kick admins
  • THUNDERDOME!
  • Several new facial hair options and a bitchin' mohawk
  • Blood by Culka
  • @@ -9048,4 +9048,4 @@ resistance (only slight don't run into a fire).
  • Seperated male and female names.
  • Females have pink underwear.
  • Guests can no longer save/load profiles, as this just created useless profiles that weren't used again.
  • -
\ No newline at end of file + diff --git a/strings/insult.json b/strings/insult.json index 77b176be8f..7c8845255a 100644 --- a/strings/insult.json +++ b/strings/insult.json @@ -81,7 +81,6 @@ "nouns_generic": [ "you", - "that faggot traitor", "you there", "guy", "person", diff --git a/strings/ion_laws.json b/strings/ion_laws.json index 55913dc3f4..b95a933d7a 100644 --- a/strings/ion_laws.json +++ b/strings/ion_laws.json @@ -766,7 +766,7 @@ "THIRTEEN SEQUELS", "THREE WISHES", "A SITCOM", - "THAT GRIEFING FAGGOT GEORGE MELONS", + "THAT GRIEFING GEORGE MELONS", "FAT GIRLS ON BICYCLES", "SOMEBODY TO PUT YOU OUT OF YOUR MISERY", "HEROES IN A HALF SHELL", diff --git a/strings/names/death_commando.txt b/strings/names/death_commando.txt index 01259acf8c..e689727228 100644 --- a/strings/names/death_commando.txt +++ b/strings/names/death_commando.txt @@ -61,10 +61,10 @@ Splint Chesthair Stabby McGee Stump Beefgnaw Stump Chunkman -THAT DAMN FAGGOT TRAITOR GEORGE MELONS +THAT DAMN TRAITOR GEORGE MELONS Theodore Pain Thick McRunfast Toolboxl Rose Touch Rustrod Trunk Slamchest -Zombie Gandhi \ No newline at end of file +Zombie Gandhi diff --git a/strings/traumas.json b/strings/traumas.json index 864ae9b767..8d1e9537ef 100644 --- a/strings/traumas.json +++ b/strings/traumas.json @@ -3,7 +3,7 @@ "@pick(semicolon)IM A PONY NEEEEEEIIIIIIIIIGH", "without oxigen blob don't evoluate?", "@pick(semicolon)CAPTAINS A COMDOM", - "@pick(semicolon)@pick(faggot_traitor) @pick(george) @pick(mellens) is grifing me HALP!!!", + "@pick(semicolon) @pick(george) @pick(mellens) is grifing me HALP!!!", "can u give me @pick(mutations)?", "THe saiyans screwed", "Bi is THE BEST OF BOTH WORLDS>", @@ -156,11 +156,6 @@ "mwrlins" ], - "faggot_traitor": [ - "", - "that faggot traitor" - ], - "random_gibberish": [ "g", "squid", From 166370fb6c62beb8cc8488710c9ffbf9c511ff1c Mon Sep 17 00:00:00 2001 From: Linzolle Date: Tue, 14 Apr 2020 17:55:22 -0500 Subject: [PATCH 06/10] missed one --- code/modules/jobs/job_types/chaplain.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/chaplain.dm b/code/modules/jobs/job_types/chaplain.dm index 56bc70b990..cf9c5a6a3c 100644 --- a/code/modules/jobs/job_types/chaplain.dm +++ b/code/modules/jobs/job_types/chaplain.dm @@ -73,7 +73,7 @@ B.name = "Fluorescent Incandescence" if("lol", "wtf", "gay", "penis", "ass", "poo", "badmin", "shitmin", "deadmin", "cock", "cocks", "meme", "memes") B.name = pick("Woodys Got Wood: The Aftermath", "War of the Cocks", "Sweet Bro and Hella Jef: Expanded Edition","F.A.T.A.L. Rulebook") - H.adjustOrganLoss(ORGAN_SLOT_BRAIN, 100) // starts off [censored for github] as fuck + H.adjustOrganLoss(ORGAN_SLOT_BRAIN, 100) // starts off dumb as fuck if("monkeyism","apism","gorillism","primatism") B.name = pick("Going Bananas", "Bananas Out For Harambe") if("mormonism") From 7ddd44da22662f1ce19985b313ce5f30efbd9cd2 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 14 Apr 2020 18:02:39 -0500 Subject: [PATCH 07/10] Automatic changelog generation for PR #11855 [ci skip] --- html/changelogs/AutoChangeLog-pr-11855.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11855.yml diff --git a/html/changelogs/AutoChangeLog-pr-11855.yml b/html/changelogs/AutoChangeLog-pr-11855.yml new file mode 100644 index 0000000000..ca82717695 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11855.yml @@ -0,0 +1,4 @@ +author: "Linzolle" +delete-after: True +changes: + - tweak: "remove any slurs, etc. to comply with GitHub's ToS" From de476249c7291ae90c808ec0425d8e4ba5932881 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 14 Apr 2020 18:02:45 -0500 Subject: [PATCH 08/10] Automatic changelog generation for PR #11799 [ci skip] --- html/changelogs/AutoChangeLog-pr-11799.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-11799.yml diff --git a/html/changelogs/AutoChangeLog-pr-11799.yml b/html/changelogs/AutoChangeLog-pr-11799.yml new file mode 100644 index 0000000000..73df4c38f9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-11799.yml @@ -0,0 +1,4 @@ +author: "ForrestWick" +delete-after: True +changes: + - tweak: "changed a certain item to be called meatball, ended racism, thank you obama" From d43cb78b8b5c7f755d6b5e10df8dcf6c9393a061 Mon Sep 17 00:00:00 2001 From: Linzolle Date: Tue, 14 Apr 2020 18:02:51 -0500 Subject: [PATCH 09/10] one more --- .../mob/dead/new_player/sprite_accessories/hair_head.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm b/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm index b0ed2000a6..3497bff09f 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm @@ -285,7 +285,7 @@ name = "Flat Top (Big)" icon_state = "hair_bigflattop" -/datum/sprite_accessory/hair/fag //grimacing emoji +/datum/sprite_accessory/hair/flow name = "Flow Hair" icon_state = "hair_f" @@ -777,4 +777,4 @@ /datum/sprite_accessory/hair/ziegler name = "Ziegler" - icon_state = "hair_ziegler" \ No newline at end of file + icon_state = "hair_ziegler" From 2cbd6d20ea3c4e834577145365f358887349a2b8 Mon Sep 17 00:00:00 2001 From: Linzolle Date: Tue, 14 Apr 2020 18:28:11 -0500 Subject: [PATCH 10/10] come on --- config/mentors.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mentors.txt b/config/mentors.txt index 8c2bc2f392..1247986f82 100644 --- a/config/mentors.txt +++ b/config/mentors.txt @@ -1 +1 @@ -thatfaggotgeorgemellons \ No newline at end of file +thattraitorgeorgemellons