From 522306b9b15632990d588b25e7876318b815a511 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 23 Apr 2024 17:08:20 +0100 Subject: [PATCH] Fixed error message inside `isModCompatible()` not showing the name of a mod correctly --- project/src/loaders/PreAkiModLoader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/loaders/PreAkiModLoader.ts b/project/src/loaders/PreAkiModLoader.ts index df9ffc74..6d6f56d8 100644 --- a/project/src/loaders/PreAkiModLoader.ts +++ b/project/src/loaders/PreAkiModLoader.ts @@ -617,7 +617,7 @@ export class PreAkiModLoader implements IModLoader this.logger.error( this.localisationService.getText("modloader-incompatible_mod_found", { author: mod.author, - modName: mod.name, + name: mod.name, incompatibleModName: incompatibleModName, }), );