|
@@ -101,6 +101,22 @@ namespace GFGGame
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+ else if (functionId == ConstFunctionId.FU_ZHUANG_DIAN)
|
|
|
+ {
|
|
|
+ int shopId = int.Parse(infos[1]);
|
|
|
+ if (shopId == ConstStoreId.LUCKY_BOX_ACTIVITY_STORE_ID)
|
|
|
+ {
|
|
|
+ listItem.target.text = "活动商店";
|
|
|
+ }
|
|
|
+ else if (shopId == ConstStoreId.LUCKY_BOX_STORE_ID)
|
|
|
+ {
|
|
|
+ listItem.target.text = "落星商店";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ listItem.target.text = "服装店";
|
|
|
+ }
|
|
|
+ }
|
|
|
else
|
|
|
{
|
|
|
listItem.target.text = gameFunctionCfg.name;
|