From e6afe2cfeca5cdcf02a1193c510378e3604556d3 Mon Sep 17 00:00:00 2001 From: Kevin Ji <1146876+kevinji@users.noreply.github.com> Date: Thu, 24 Oct 2024 12:53:16 -0700 Subject: [PATCH] actions: Fix typo in description --- src/agent/commands/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/commands/actions.js b/src/agent/commands/actions.js index 246d649..fc562a8 100644 --- a/src/agent/commands/actions.js +++ b/src/agent/commands/actions.js @@ -265,7 +265,7 @@ export const actionsList = [ }, { name: '!clearFurnace', - description: 'Tak all items out of the nearest furnace.', + description: 'Take all items out of the nearest furnace.', params: { }, perform: wrapExecution(async (agent) => { await skills.clearNearestFurnace(agent.bot);