mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-01-18 19:40:05 +01:00
Make sure AI is not busy when using retry to regenerate random story
This commit is contained in:
parent
4832dd6f37
commit
0348970b19
@ -2863,7 +2863,8 @@ def actionretry(data):
|
||||
emit('from_server', {'cmd': 'errmsg', 'data': "Retry function unavailable in Read Only mode."})
|
||||
return
|
||||
if(vars.recentrng is not None):
|
||||
randomGameRequest(vars.recentrng, memory=vars.recentrngm)
|
||||
if(not vars.aibusy):
|
||||
randomGameRequest(vars.recentrng, memory=vars.recentrngm)
|
||||
return
|
||||
if actionback():
|
||||
actionsubmit("", actionmode=vars.actionmode, force_submit=True)
|
||||
|
Loading…
Reference in New Issue
Block a user