From be9392a0d7cb5c2d1e287567de4dc567144375c0 Mon Sep 17 00:00:00 2001
From: fheinrich <fheinrich@techfak.uni-bielefeld.de>
Date: Tue, 19 Mar 2024 15:29:54 +0100
Subject: [PATCH] Reenable all actions in random agent

---
 cooperative_cuisine/configs/agents/random_agent.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/cooperative_cuisine/configs/agents/random_agent.py b/cooperative_cuisine/configs/agents/random_agent.py
index e1db06bf..6d8830d9 100644
--- a/cooperative_cuisine/configs/agents/random_agent.py
+++ b/cooperative_cuisine/configs/agents/random_agent.py
@@ -310,8 +310,7 @@ async def agent():
                         ...
 
             if not task_type:
-                # task_type = random.choice(["GOTO", "PUT", "INTERACT"])
-                task_type = random.choice(["GOTO"])
+                task_type = random.choice(["GOTO", "PUT", "INTERACT"])
                 threshold = datetime.now() + timedelta(seconds=TIME_TO_STOP_ACTION)
                 if task_type == "GOTO":
                     # counter_type = random.choice(list(counters.keys()))
-- 
GitLab