diff --git a/code/datums/spells/cluwne.dm b/code/datums/spells/cluwne.dm
index d3e05de4198..d4d3b383f9d 100644
--- a/code/datums/spells/cluwne.dm
+++ b/code/datums/spells/cluwne.dm
@@ -16,7 +16,7 @@
adjustBrainLoss(80)
nutrition = 9000
overeatduration = 9000
- confused = 120
+ confused = 30
if(mind)
mind.assigned_role = "Cluwne"
diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm
index bc62c5d71d4..9a2f3fcade3 100644
--- a/code/modules/clothing/shoes/miscellaneous.dm
+++ b/code/modules/clothing/shoes/miscellaneous.dm
@@ -217,3 +217,4 @@
lefthand_file = 'icons/goonstation/mob/inhands/clothing_lefthand.dmi'
righthand_file = 'icons/goonstation/mob/inhands/clothing_righthand.dmi'
flags = NODROP
+ shoe_sound = "clownstep"
diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm
index 27b7120b63a..05125035125 100644
--- a/code/modules/surgery/organs/organ_internal.dm
+++ b/code/modules/surgery/organs/organ_internal.dm
@@ -488,6 +488,7 @@
/obj/item/organ/internal/honktumor/cursed/remove(mob/living/carbon/M, special = 0, clean_remove = 0)
..()
if(!clean_remove)
+ visible_message("[src] vanishes into dust, and a [M] emits a loud honk!", "You hear a loud honk.")
insert(M) //You're not getting away that easily!
else
qdel(src)