From f0cf99cabe5a583f1d0ed8e191dc34ad9779a022 Mon Sep 17 00:00:00 2001 From: Vadzim Valchkovich Date: Thu, 8 Jun 2023 13:24:53 +0200 Subject: [PATCH] changed table reset time --- src/obj/Table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obj/Table.py b/src/obj/Table.py index 40d3bc4..a39e5f7 100644 --- a/src/obj/Table.py +++ b/src/obj/Table.py @@ -13,7 +13,7 @@ class Table(Object): def isActual(self, current_time): if self.is_actual and self.agent_role == "table": - if current_time - self.waiting_time > 300: + if current_time - self.waiting_time > 1000: self.reset_role(current_time) self.reset_status()