From 2a1e4e3af30c2b4e44a43740bed369fdaec8117e Mon Sep 17 00:00:00 2001 From: GuiltyNeko Date: Mon, 14 Mar 2022 15:18:56 -0700 Subject: [PATCH] Comments I guess --- code/modules/mob/living/simple_mob/harvesting.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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."