diff --git a/src/agent/commands/index.js b/src/agent/commands/index.js index 3f3f967..008c1d0 100644 --- a/src/agent/commands/index.js +++ b/src/agent/commands/index.js @@ -15,7 +15,7 @@ export function getCommand(name) { } export function blacklistCommands(commands) { - const unblockable = ['!stop', '!stats', '!goal', '!endGoal', '!endConversation']; + const unblockable = ['!stop', '!stats', '!inventory', '!goal']; for (let command_name of commands) { if (unblockable.includes(command_name)){ console.warn(`Command ${command_name} is unblockable`);