diff --git a/code/modules/spells/spell_types/mime.dm b/code/modules/spells/spell_types/mime.dm
index 811cd5e7ef0..44d5fa55ef9 100644
--- a/code/modules/spells/spell_types/mime.dm
+++ b/code/modules/spells/spell_types/mime.dm
@@ -65,7 +65,7 @@
/obj/effect/proc_holder/spell/targeted/forcewall/mime
name = "Invisible Blockade"
- desc = "With more polished skills, a powerful mime can create a invisble blockade, blocking off a 3x1 area."
+ desc = "Form an invisible three tile wide blockade."
wall_type = /obj/effect/forcefield/mime/advanced
invocation_type = "emote"
invocation_emote_self = "You form a blockade in front of yourself."
@@ -90,7 +90,7 @@
/obj/effect/proc_holder/spell/aimed/finger_guns
name = "Finger Guns"
- desc = "An ancient technqiue, passed down from mentor to student. Allows you to shoot bullets out of your fingers."
+ desc = "Shoot a mimed bullet from your fingers that does a stun and some damage."
school = "mime"
panel = "Mime"
charge_max = 300
@@ -110,6 +110,10 @@
/obj/effect/proc_holder/spell/aimed/finger_guns/Click()
+ var/mob/living/carbon/human/owner = usr
+ if(owner.incapacitated())
+ owner << "You can't properly point your fingers while incapacitated."
+ return
if(usr && usr.mind)
if(!usr.mind.miming)
usr << "You must dedicate yourself to silence first."
@@ -124,7 +128,7 @@
spell = /obj/effect/proc_holder/spell/targeted/forcewall/mime
spellname = ""
name = "Guide to Advanced Mimery Vol 1"
- desc = "When you turn the pages, it won't make a sound!"
+ desc = "The pages don't make any sound when turned."
icon_state ="bookmime"
/obj/item/weapon/spellbook/oneuse/mimery_guns
@@ -132,4 +136,4 @@
spellname = ""
name = "Guide to Advanced Mimery Vol 2"
desc = "There aren't any words written..."
- icon_state ="bookmime"
\ No newline at end of file
+ icon_state ="bookmime"
diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm
index 3835b6c9b1c..0d9519897f6 100644
--- a/code/modules/uplink/uplink_item.dm
+++ b/code/modules/uplink/uplink_item.dm
@@ -1194,7 +1194,7 @@ var/list/uplink_items = list() // Global list so we only initialize this once.
/datum/uplink_item/role_restricted/mimery
name = "Guide to Advanced Mimery Series"
desc = "The classical two part series on how to further hone your mime skills. Upon studying the series, the user should be able to make 3x1 invisble walls, and shoot bullets out of their fingers. Obviously only works for Mimes."
- cost = 15
+ cost = 12
item = /obj/item/weapon/storage/box/syndie_kit/mimery
restricted_roles = list("Mime")