diff --git a/src/main/kotlin/Routines.kt b/src/main/kotlin/Routines.kt index e983d2a..2988d6a 100644 --- a/src/main/kotlin/Routines.kt +++ b/src/main/kotlin/Routines.kt @@ -71,7 +71,7 @@ object Routines { println("\rClean herbs infused") val finish = System.currentTimeMillis() - + agent.drawStar(agent.getPointerLocation()) println("Entire chain finished in ${agent.prettyTimeString(finish - start)}") } diff --git a/src/main/kotlin/TaskParams.kt b/src/main/kotlin/TaskParams.kt index 2c91e1d..a3446e2 100644 --- a/src/main/kotlin/TaskParams.kt +++ b/src/main/kotlin/TaskParams.kt @@ -6,9 +6,6 @@ import java.awt.Point * This defines standard fields needed by most routines like total volume, * 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 volumePerStep The volume of items to process per step. * @property agent The Agent instance that will run the routine.