交换库存查询

This commit is contained in:
milimoe 2025-11-23 02:18:08 +08:00
parent 3f0d5ffa7d
commit 98795dcc5c
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -1103,7 +1103,7 @@ namespace Oshima.FunGame.WebAPI.Services
{
page = p;
}
List<string> msgs = Controller.GetInventoryInfo6(uid, page, search, true);
List<string> msgs = Controller.GetInventoryInfo6(uid, page, search, false);
if (msgs.Count > 0)
{
await SendAsync(e, "搜索库存物品(带描述)", "\r\n" + string.Join("\r\n", msgs));
@ -1121,7 +1121,7 @@ namespace Oshima.FunGame.WebAPI.Services
{
page = p;
}
List<string> msgs = Controller.GetInventoryInfo6(uid, page, search, false);
List<string> msgs = Controller.GetInventoryInfo6(uid, page, search, true);
if (msgs.Count > 0)
{
await SendAsync(e, "搜索库存物品", "\r\n" + string.Join("\r\n", msgs));