fix(偷窃系统): 修复NPC列表标签解析问题并更新.gitignore

修复StealSystem中NPC列表标签解析逻辑,确保正确识别[npc list]标签
添加加载成功提示信息并排除libAurora.so文件
This commit is contained in:
2026-04-18 14:11:31 +08:00
parent 721fb5a992
commit 991050c720
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
OfficialProject/ OfficialProject/
OfficialConfig/ OfficialConfig/
lib/libAurora.so

View File

@@ -317,7 +317,7 @@ class StealSystem {
foundRandomCount = true; foundRandomCount = true;
} else if (fragment == "[use item]") { } else if (fragment == "[use item]") {
UseItem = Data.Get(); UseItem = Data.Get();
} else { } else if (fragment == "[npc list]") {
foundNpcTag = true; foundNpcTag = true;
while (true) { while (true) {
local npcId = Data.Get(); local npcId = Data.Get();
@@ -372,4 +372,5 @@ Timer.SetTimeOut(function() {
return; return;
} }
getroottable()._StealSystem_ <- stealSystem; getroottable()._StealSystem_ <- stealSystem;
print("偷窃系统 - 已加载");
}, 1); }, 1);

Binary file not shown.