From 8fbca2db5ab146b404cd6cbd7df244c36a461328 Mon Sep 17 00:00:00 2001 From: vfbd Date: Thu, 11 Aug 2022 15:27:07 -0400 Subject: [PATCH] actionsubmit should not ignore vars.aibusy if vars.standalone is True --- aiserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiserver.py b/aiserver.py index f1be6b6f..9aeb54ec 100644 --- a/aiserver.py +++ b/aiserver.py @@ -3886,7 +3886,7 @@ def check_for_backend_compilation(): def actionsubmit(data, actionmode=0, force_submit=False, force_prompt_gen=False, disable_recentrng=False, no_generate=False): # Ignore new submissions if the AI is currently busy - if(not vars.standalone and vars.aibusy): + if(vars.aibusy): return while(True):