diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm
index 404ab402b39..e5620121763 100644
--- a/code/modules/research/xenobiology/xenobiology.dm
+++ b/code/modules/research/xenobiology/xenobiology.dm
@@ -140,7 +140,7 @@
return ..()
if(M.stat)
user << "The slime is dead!"
- return..()
+ return ..()
M.docile = 1
M.nutrition = 700
@@ -172,7 +172,7 @@
return ..()
if(M.stat)
user << "[M] is dead!"
- return..()
+ return ..()
var/mob/living/simple_animal/SM = M
if(SM.sentience_type != sentience_type)
user << "The potion won't work on [SM]."
@@ -212,13 +212,13 @@
return ..()
if(M.is_adult) //Can't steroidify adults
user << "Only baby slimes can use the steroid!"
- return..()
+ return ..()
if(M.stat)
user << "The slime is dead!"
- return..()
+ return ..()
if(M.cores >= 5)
user <<"The slime already has the maximum amount of extract!"
- return..()
+ return ..()
user <<"You feed the slime the steroid. It will now produce one more extract."
M.cores++
@@ -242,10 +242,10 @@
return ..()
if(M.stat)
user << "The slime is dead!"
- return..()
+ return ..()
if(M.mutation_chance == 0)
user <<"The slime already has no chance of mutating!"
- return..()
+ return ..()
user <<"You feed the slime the stabilizer. It is now less likely to mutate."
M.mutation_chance = Clamp(M.mutation_chance-15,0,100)
@@ -263,13 +263,13 @@
return ..()
if(M.stat)
user << "The slime is dead!"
- return..()
+ return ..()
if(M.mutator_used)
user << "This slime has already consumed a mutator, any more would be far too unstable!"
- return..()
+ return ..()
if(M.mutation_chance == 100)
user <<"The slime is already guaranteed to mutate!"
- return..()
+ return ..()
user <<"You feed the slime the mutator. It is now more likely to mutate."
M.mutation_chance = Clamp(M.mutation_chance+12,0,100)
@@ -291,14 +291,14 @@
var/obj/item/I = C
if(I.slowdown <= 0)
user << "The [C] can't be made any faster!"
- return..()
+ return ..()
I.slowdown = 0
if(istype(C, /obj/vehicle))
var/obj/vehicle/V = C
if(V.vehicle_move_delay <= 0)
user << "The [C] can't be made any faster!"
- return..()
+ return ..()
V.vehicle_move_delay = 0
user <<"You slather the red gunk over the [C], making it faster."
@@ -323,7 +323,7 @@
return
if(C.max_heat_protection_temperature == FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT)
user << "The [C] is already fireproof!"
- return..()
+ return ..()
user <<"You slather the blue gunk over the [C], fireproofing it."
C.name = "fireproofed [C.name]"
C.color = "#000080"