Removes some words to avoid possible problems with github terms of service (#8695)

This commit is contained in:
Alberyk
2020-04-22 16:29:56 -03:00
committed by GitHub
parent a91fed131a
commit 084d38fe2f
12 changed files with 14 additions and 22 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
#define SOUND_MINIMUM_PRESSURE 10
#define PRESSURE_DAMAGE_COEFFICIENT 4 // The amount of pressure damage someone takes is equal to (pressure / HAZARD_HIGH_PRESSURE)*PRESSURE_DAMAGE_COEFFICIENT, with the maximum of MAX_PRESSURE_DAMAGE.
#define MAX_HIGH_PRESSURE_DAMAGE 4 // This used to be 20... I got this much random rage for some retarded decision by polymorph?! Polymorph now lies in a pool of blood with a katana jammed in his spleen. ~Errorage --PS: The katana did less than 20 damage to him :(
#define MAX_HIGH_PRESSURE_DAMAGE 4
#define LOW_PRESSURE_DAMAGE 0.5 // The amount of damage someone takes when in a low pressure area. (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value).
#define MINIMUM_PRESSURE_DIFFERENCE_TO_SUSPEND (MINIMUM_AIR_TO_SUSPEND*R_IDEAL_GAS_EQUATION*T20C)/CELL_VOLUME // Minimum pressure difference between zones to suspend
+2 -2
View File
@@ -30,7 +30,7 @@
affected_mob.emote("stare")
if(prob(2))
affected_mob.emote("drool")
if(prob(10))//shouldn't retard you to death now
if(prob(10))
affected_mob.adjustBrainLoss(2, 55)
affected_mob.updatehealth()
if(prob(2))
@@ -50,7 +50,7 @@
affected_mob.updatehealth()
if(prob(2))
to_chat(affected_mob, "<span class='notice'>Your head hurts.</span>" */
if(prob(15)) //shouldn't retard you to death now
if(prob(15))
affected_mob.adjustBrainLoss(3, 55)
affected_mob.updatehealth()
if(prob(2))
+1 -1
View File
@@ -9,7 +9,7 @@
affected_species = list("Human")
curable = 1
permeability_mod = 0.75
desc = "Some speculate, that this virus is the cause of Wizard Federation existance. 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 Wizard Federation existance. Subjects yell 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 = "Major"
@@ -12,5 +12,4 @@
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
return 1
@@ -189,7 +189,6 @@
//TODO: DEFERRED Consider checking to make sure tank pressure is high enough before doing this...
//Transfer 5% of current tank air contents to turf
var/datum/gas_mixture/air_transfer = ptank.air_contents.remove_ratio(0.02*(throw_amount/100))
//air_transfer.toxins = air_transfer.toxins * 5 // This is me not comprehending the air system. I realize this is retarded and I could probably make it work without fucking it up like this, but there you have it. -- TLE
new/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel(target,air_transfer.gas["phoron"]*15,get_dir(loc,target))
air_transfer.gas["phoron"] = 0
target.assume_air(air_transfer)
+1 -1
View File
@@ -142,7 +142,7 @@
/obj/structure/sign/kiddieplaque
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. Beneath the image, someone has scratched the word \"PACKETS\""
icon_state = "kiddieplaque"
/obj/structure/sign/kiddieplaque/janitor
+3 -3
View File
@@ -565,13 +565,13 @@
visible_message("<span class='warning'>[connected] begins humming with an electrical tone.</span>", "<span class='warning'>You hear an electrical humming.</span>")
if(H && connected.occupant.resolve() == H)
var/obj/item/organ/internal/brain/sponge = H.internal_organs_by_name[BP_BRAIN]
var/retardation = H.getBrainLoss()
var/braindamage = H.getBrainLoss()
if(sponge && istype(sponge))
if(!sponge.lobotomized)
to_chat(user, "<span class='notice'>Scans indicate [retardation] distinct abnormalities present in subject.</span>")
to_chat(user, "<span class='notice'>Scans indicate [braindamage] distinct abnormalities present in subject.</span>")
return
else
to_chat(user, "<span class='notice'>Scans indicate [retardation+rand(-20,20)] distinct abnormalities present in subject.</span>")
to_chat(user, "<span class='notice'>Scans indicate [braindamage+rand(-20,20)] distinct abnormalities present in subject.</span>")
return
to_chat(user, "<span class='warning'>Scans indicate total brain failure in subject.</span>")
+5 -5
View File
@@ -629,7 +629,7 @@ var/list/admin_verbs_cciaa = list(
/client/proc/cure_traumas(mob/T as mob in mob_list)
set category = "Fun"
set name = "Cure Traumas"
set desc = "Cure the retardations of a given mob."
set desc = "Cure the traumas of a given mob."
if(!istype(T,/mob/living/carbon/human))
to_chat(usr, "This can only be done to instances of type /mob/living/carbon/human")
@@ -644,7 +644,7 @@ var/list/admin_verbs_cciaa = list(
/client/proc/add_traumas(mob/T as mob in mob_list)
set category = "Fun"
set name = "Add Traumas"
set desc = "Induces retardations on a given mob."
set desc = "Induces traumas on a given mob."
if(!istype(T,/mob/living/carbon/human))
to_chat(usr, "This can only be done to instances of type /mob/living/carbon/human")
@@ -796,10 +796,10 @@ var/list/admin_verbs_cciaa = list(
/client/proc/toggle_aooc()
set name = "Toggle AOOC"
set category = "Admin"
if(!check_rights(R_ADMIN|R_MOD|R_CCIAA))
return
if(holder)
if (toggle_aooc_holder_check() == FALSE)
to_chat(src, "<span class='notice'>AOOC is now muted.</span>")
@@ -807,7 +807,7 @@ var/list/admin_verbs_cciaa = list(
else
to_chat(src, "<span class='notice'>AOOC is now unmuted.</span>")
verbs |= /client/proc/aooc
feedback_add_details("admin_verb","TAOOC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/toggle_log_hrefs()
-3
View File
@@ -428,9 +428,6 @@ var/list/mineral_can_smooth_with = list(
/turf/simulated/mineral/proc/artifact_debris(var/severity = 0)
//cael's patented random limited drop componentized loot system!
//sky's patented not-fucking-retarded overhaul!
//geeves' making this not look like shit!
//Give a random amount of loot from 1 to 3 or 5, varying on severity.
for(var/j in 1 to rand(1, 3 + max(min(severity, 1), 0) * 2))
@@ -261,7 +261,6 @@
. = ..()
reagents.add_reagent("nutriment", 20)
reagents.add_reagent(pick("banana","berryjuice","grapejuice","lemonjuice","limejuice","orangejuice","watermelonjuice"),1)
//Would be absolutely retarded to grind the biogenerator for juices.
/obj/item/reagent_containers/pill/rmt
name = "RMT pill"
+1 -1
View File
@@ -133,7 +133,7 @@ proc/airborne_can_reach(turf/source, turf/target)
/mob/living/carbon/proc/spread_disease_to(var/mob/living/carbon/victim, var/vector = "Airborne")
if (src == victim)
return "retardation"
return "nope"
// log_debug("Spreading [vector] diseases from [src] to [victim]")
if (virus2.len > 0)
-2
View File
@@ -437,12 +437,10 @@
if(full_heat_capacity + s_full_heat_capacity)
temp_avg = (temperature * full_heat_capacity + other.temperature * s_full_heat_capacity) / (full_heat_capacity + s_full_heat_capacity)
//WOOT WOOT TOUCH THIS AND YOU ARE A RETARD.
if(connecting_tiles && (sharing_lookup_table.len >= connecting_tiles)) //6 or more interconnecting tiles will max at 42% of air moved per tick.
ratio = sharing_lookup_table[connecting_tiles]
else if(!connecting_tiles)
ratio = 1
//WOOT WOOT TOUCH THIS AND YOU ARE A RETARD
for(var/g in avg_gas)
gas[g] = max(0, (gas[g] - avg_gas[g]) * (1 - ratio) + avg_gas[g])