From 2dafaa57ae77b1fbf9ba27d790b8ad2bfec4675f Mon Sep 17 00:00:00 2001 From: BudgiusTarquin Date: Mon, 23 Feb 2026 06:31:13 +0000 Subject: [PATCH 1/2] Update colony_integrator.md Making the description clearer for the "progress" and "status" variable for getResearch(). Signed-off-by: BudgiusTarquin --- docs/peripherals/colony_integrator.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/peripherals/colony_integrator.md b/docs/peripherals/colony_integrator.md index 12b27ff9..53baaf61 100644 --- a/docs/peripherals/colony_integrator.md +++ b/docs/peripherals/colony_integrator.md @@ -143,10 +143,10 @@ Returns a table of all possible colony research as a tree where the root table c | ------------------------ | ------------------------------------------ | | id: `string` | The research id | | name: `string` | The name of the research | -| status: `number` | The current research status | +| status: `string` | The current research status: `NOT_STARTED`, `IN_PROGRESS`, `FINISHED` | | researchEffects: `table` | A list of effects provided by the research | -| children: `table?` | A list of any child research | -| progress: `number` | Research progress | +| children: `table` | A list of any child research | +| progress: `number` | A value between 0 & 72/144/288/576/1152/2304 for level 1-6 researches respectively. Ticks up when the research is in progress | | requirements: `table` | List of requirements for the research | | cost: `table` | The cost of the research (list of tables) | From dbfd6b05534d7f5b77d86a97ec31c9284f7c7330 Mon Sep 17 00:00:00 2001 From: BudgiusTarquin Date: Mon, 23 Feb 2026 15:21:20 +0000 Subject: [PATCH 2/2] Update colony_integrator.md Signed-off-by: BudgiusTarquin --- docs/peripherals/colony_integrator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/peripherals/colony_integrator.md b/docs/peripherals/colony_integrator.md index 53baaf61..f8fcf303 100644 --- a/docs/peripherals/colony_integrator.md +++ b/docs/peripherals/colony_integrator.md @@ -145,7 +145,7 @@ Returns a table of all possible colony research as a tree where the root table c | name: `string` | The name of the research | | status: `string` | The current research status: `NOT_STARTED`, `IN_PROGRESS`, `FINISHED` | | researchEffects: `table` | A list of effects provided by the research | -| children: `table` | A list of any child research | +| children: `table?` | A list of any child research | | progress: `number` | A value between 0 & 72/144/288/576/1152/2304 for level 1-6 researches respectively. Ticks up when the research is in progress | | requirements: `table` | List of requirements for the research | | cost: `table` | The cost of the research (list of tables) |