Compare commits

..

No commits in common. "master" and "0.8.0" have entirely different histories.

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.9.0',
hotfixVersion: '0.8.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 == 0) {
if (element.lock_type != 3) {
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 != 0
element.lock_type == 3
) {
node.getComponent('wantedHero').showCover();
}