diff --git a/server/web3dbspider/services/events/common/BaseEventProcess.js b/server/web3dbspider/services/events/common/BaseEventProcess.js index 2514ee0..c605d7e 100644 --- a/server/web3dbspider/services/events/common/BaseEventProcess.js +++ b/server/web3dbspider/services/events/common/BaseEventProcess.js @@ -439,6 +439,8 @@ class BaseEventProcess { } if (tokenType == bcconst.BC_NFT_HERO) { await this.ingameActivateHero(from, to, tblName, tokenId, tokenType); + } else if (tokenType == bcconst.BC_NFT_NORMAL_HERO) { + await this.ingameActivateHero(from, to, tblName, tokenId, tokenType); } else if (tokenType == bcconst.BC_NFT_GOLD_BULLION) { await this.ingameActivateGoldBullion(from, to, tblName, tokenId, tokenType); }