diff --git a/code/modules/mob/living/simple_mob/harvesting.dm b/code/modules/mob/living/simple_mob/harvesting.dm
index 8be1b7f9ce..ace0e871ab 100644
--- a/code/modules/mob/living/simple_mob/harvesting.dm
+++ b/code/modules/mob/living/simple_mob/harvesting.dm
@@ -18,10 +18,10 @@
/mob/living/simple_mob/examine(mob/user)
. = ..()
if(stat != DEAD && user && harvest_tool && (get_dist(user, src) <= 3))
- . += "\The [src] can be [harvest_verb] with a [initial(harvest_tool.name)] every [harvest_cooldown / 600] minutes."
+ . += "\The [src] can be [harvest_verb] with a [initial(harvest_tool.name)] every [harvest_cooldown / 600] minutes." //CHOMPEdit Please do math better
var/time_to_harvest = (harvest_recent + harvest_cooldown) - world.time
if(time_to_harvest > 0)
- . += "It can be [harvest_verb] in [(time_to_harvest)] second(s)."
+ . += "It can be [harvest_verb] in [(time_to_harvest)] second(s)." //CHOMPEdit This is as good as I can get for now, I intend to make it better later
else
. += "It can be [harvest_verb] now."