diff --git a/code/WorkInProgress/ZomgPonies/karma.dm b/code/WorkInProgress/ZomgPonies/karma.dm
index a3fe547f3a1..4e3ab58ea84 100644
--- a/code/WorkInProgress/ZomgPonies/karma.dm
+++ b/code/WorkInProgress/ZomgPonies/karma.dm
@@ -147,7 +147,7 @@ You've gained [totalkarma] total karma in your time here.
"}
Unlock Customs Officer -- 30KP
Unlock BlueShield -- 30KP
Unlock Kidan -- 30KP
- Unlock Greys -- 30KP
+ Unlock Grey -- 30KP
Unlock Vox -- 45KP
"}
diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm
index ed9a144395c..cf14385d10c 100644
--- a/code/modules/client/client procs.dm
+++ b/code/modules/client/client procs.dm
@@ -76,7 +76,7 @@
if(karma <30)
usr << "You do not have enough karma!"
else
- src.DB_species_unlock("Greys",30)
+ src.DB_species_unlock("Grey",30)
if("6")
if(karma <45)
usr << "You do not have enough karma!"
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index 5eec814ddfe..b896813cd56 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -48,6 +48,8 @@
/mob/living/carbon/human/grey/New()
set_species("Grey")
+ mutations.Add(mRemotetalk)
+ verbs += /mob/living/carbon/human/proc/remotesay
..()
/mob/living/carbon/human/human/New()
diff --git a/code/modules/mob/living/carbon/species.dm b/code/modules/mob/living/carbon/species.dm
index ea7512a7210..e07b23661ce 100644
--- a/code/modules/mob/living/carbon/species.dm
+++ b/code/modules/mob/living/carbon/species.dm
@@ -176,6 +176,6 @@
darksight = 5 // BOOSTED from 2
eyes = "grey_eyes_s"
max_hurt_damage = 3 // From 5 (for humans)
- default_mutations=list(mRemotetalk) // TK is also another candidate, but TK is overpowered as fuck.
+// default_mutations=list(mRemotetalk) // TK is also another candidate, but TK is overpowered as fuck.
flags = WHITELISTED | HAS_LIPS | CAN_BE_FAT
\ No newline at end of file