diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm
index bd5cf3784af..ab678e06363 100644
--- a/code/modules/hydroponics/grown.dm
+++ b/code/modules/hydroponics/grown.dm
@@ -614,7 +614,9 @@
/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/killer/attack_self(mob/user as mob)
if(istype(user.loc,/turf/space))
return
- var/mob/living/simple_animal/hostile/killertomato/K = new /mob/living/simple_animal/hostile/killertomato(user.loc)
+ user << "You begin to awaken the Killer Tomato."
+ sleep(30)
+ var/mob/living/simple_animal/hostile/killertomato/K = new /mob/living/simple_animal/hostile/killertomato(src.loc)
K.maxHealth += round(endurance / 3)
K.melee_damage_lower += round(potency / 10)
K.melee_damage_upper += round(potency / 10)
@@ -622,7 +624,7 @@
K.health = K.maxHealth
qdel(src)
- user << "You plant the killer-tomato."
+ K.visible_message("The Killer Tomato growls as it suddenly awakens.")
/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/blood