Explorar el Código

fix: not enable user_image_create_prefix by default

develop
zhayujie hace 1 año
padre
commit
03d94fcfa0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      plugins/linkai/midjourney.py

+ 1
- 1
plugins/linkai/midjourney.py Ver fichero

@@ -96,7 +96,7 @@ class MJBot:
return TaskType.VARIATION
elif cmd_list[0].lower() == f"{trigger_prefix}mjr":
return TaskType.RESET
elif context.type == ContextType.IMAGE_CREATE and self.config.get("use_image_create_prefix"):
elif context.type == ContextType.IMAGE_CREATE and self.config.get("use_image_create_prefix") and self.config.get("enabled"):
return TaskType.GENERATE

def process_mj_task(self, mj_type: TaskType, e_context: EventContext):


Cargando…
Cancelar
Guardar