mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
Removes some words to avoid possible problems with github terms of service (#8695)
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user