diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm
index 635a3e6e5d4..67d6bf6f49e 100644
--- a/code/modules/admin/topic.dm
+++ b/code/modules/admin/topic.dm
@@ -1707,7 +1707,7 @@
if(!istype(H))
to_chat(usr, "This can only be used on instances of type /mob/living/carbon/human")
return
- var/etypes = list("Borgification","Corgification","Death By Fire","Total Brain Death","Honk Tumor","Demotion Notice")
+ var/etypes = list("Borgification","Corgification","Death By Fire","Total Brain Death","Honk Tumor","Cluwne","Demotion Notice")
var/eviltype = input(src.owner, "Which type of evil fax do you wish to send [H]?","Its good to be baaaad...", "") as null|anything in etypes
if(!(eviltype in etypes))
return
diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm
index 1f7426a66e9..a3ec39243a9 100644
--- a/code/modules/paperwork/paper.dm
+++ b/code/modules/paperwork/paper.dm
@@ -696,6 +696,11 @@
var/obj/item/organ/internal/organ = new /obj/item/organ/internal/honktumor
to_chat(target,"Life seems funnier, somehow.")
organ.insert(target)
+ else if(myeffect == "Cluwne")
+ if(istype(target, /mob/living/carbon/human))
+ var/mob/living/carbon/human/H = target
+ to_chat(H, "You feel surrounded by sadness. Sadness... and HONKS!")
+ H.makeCluwne()
else if(myeffect == "Demotion Notice")
command_announcement.Announce("[mytarget] is hereby demoted to the rank of Civilian. Process this demotion immediately. Failure to comply with these orders is grounds for termination.","CC Demotion Order")
else