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
@@ -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>")