From 684eead1d988fc85f89b346a466e7ace6f1eccec Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 17 Jul 2024 13:36:07 +0800 Subject: [PATCH] 1 --- server/web3dbspider/services/events/common/BaseEventProcess.js | 2 ++ 1 file changed, 2 insertions(+) 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); }