some tweaks to docs

This commit is contained in:
dtookey 2023-08-05 08:12:38 -04:00
parent b88c998c0a
commit 5c2baa33bb
2 changed files with 1 additions and 4 deletions

View File

@ -71,7 +71,7 @@ object Routines {
println("\rClean herbs infused") println("\rClean herbs infused")
val finish = System.currentTimeMillis() val finish = System.currentTimeMillis()
agent.drawStar(agent.getPointerLocation())
println("Entire chain finished in ${agent.prettyTimeString(finish - start)}") println("Entire chain finished in ${agent.prettyTimeString(finish - start)}")
} }

View File

@ -6,9 +6,6 @@ import java.awt.Point
* This defines standard fields needed by most routines like total volume, * This defines standard fields needed by most routines like total volume,
* volume per step, and the Agent instance. * volume per step, and the Agent instance.
* *
* By extending this interface, routine parameter classes get these
* common fields for free.
*
* @property totalVolume The total number of items to process in the routine. * @property totalVolume The total number of items to process in the routine.
* @property volumePerStep The volume of items to process per step. * @property volumePerStep The volume of items to process per step.
* @property agent The Agent instance that will run the routine. * @property agent The Agent instance that will run the routine.