Compare commits

...

4 Commits

Author SHA1 Message Date
zhuguoqing
bc2c1a9b5f Merge branch 'release-p3-h0.8.0' 2022-06-16 19:14:19 +08:00
guoqing.zhu
d1234216f3 update 2022-06-16 16:47:59 +08:00
guoqing.zhu
e15774ba3b add lock 2022-06-16 16:10:45 +08:00
zhuguoqing
14785fa079 update buildteamplate 2022-05-28 23:17:36 +08:00
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ var MainConfig = {
isoffical: false,
viewscale: 0.5,
packageid: 0, //0 apk 1 googleplay aab 2 ios
hotfixVersion: '0.8.0',
hotfixVersion: '0.9.0',
};
export var isTest = true;

View File

@ -273,7 +273,7 @@ cc.Class({
herolist = data.hero_list;
for (var i = 0; i < herolist.length; i++) {
var element = herolist[i];
if (element.lock_type != 3) {
if (element.lock_type == 0) {
this.allHeroUUID.push(element.hero_uniid);
this.allHeroID.push(parseInt(element.hero_id));
this.heroDetails.push(herolist[i]);

View File

@ -112,7 +112,7 @@ cc.Class({
this.allHasGotHero.includes(
element.hero_uniid.toString()
) ||
element.lock_type == 3
element.lock_type != 0
) {
node.getComponent('wantedHero').showCover();
}