From 59f9553625935721ff08ab6ea1b537dffba1922b Mon Sep 17 00:00:00 2001 From: ShrBox Date: Tue, 31 Dec 2024 13:15:07 +0800 Subject: [PATCH] fix: fix manifest.json --- manifest.json | 4 ++-- xmake.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 3d31ed7..08f7756 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { - "name": "${pluginName}", - "entry": "${pluginFile}", + "name": "${modName}", + "entry": "${modFile}", "type": "native", "description": "LLMoney, but adapted to LeviLamina", "author": "LiteLDev", diff --git a/xmake.lua b/xmake.lua index 81683d2..0b84cbb 100644 --- a/xmake.lua +++ b/xmake.lua @@ -21,7 +21,7 @@ option("target_type") set_values("server", "client") option_end() -target("legacy-money") +target("LegacyMoney") add_rules("@levibuildscript/linkrule") add_rules("@levibuildscript/modpacker") add_cxflags( "/EHa", "/utf-8", "/W4", "/w44265", "/w44289", "/w44296", "/w45263", "/w44738", "/w45204")