From 19fde42402df678eed5dc46fe1df4b18389f9d93 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 10 Nov 2023 17:24:01 +0800 Subject: [PATCH] 1 --- server/common/bcconst.js | 2 ++ server/common/constant.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/server/common/bcconst.js b/server/common/bcconst.js index 5d0104c..26d98a3 100644 --- a/server/common/bcconst.js +++ b/server/common/bcconst.js @@ -7,6 +7,7 @@ const BC_NFT_FRAGMENT = 5; const BC_NFT_CLAIM_BOX = 6; const BC_NFT_GENESIS = 7; const BC_NFT_PLANET = 8; +const BC_NFT_EXPLORER = 9; const BC_FUNC_CREATION = 1; const BC_FUNC_GUILD = 3; @@ -32,6 +33,7 @@ exports.BC_NFT_FRAGMENT = BC_NFT_FRAGMENT; exports.BC_NFT_CLAIM_BOX = BC_NFT_CLAIM_BOX; exports.BC_NFT_GENESIS = BC_NFT_GENESIS; exports.BC_NFT_PLANET = BC_NFT_PLANET; +exports.BC_NFT_EXPLORER = BC_NFT_EXPLORER; exports.BC_FUNC_CREATION = BC_FUNC_CREATION; exports.BC_FUNC_GUILD = BC_FUNC_GUILD; diff --git a/server/common/constant.js b/server/common/constant.js index 99f4930..b9f67b6 100644 --- a/server/common/constant.js +++ b/server/common/constant.js @@ -18,6 +18,7 @@ const ITEM_MATERIAL_CHIP_SUBTYPE = 3; const ERRCODE_SIGN_ERROR = 2001; const GACHA_ITEM_ID = 240001; +const EXPLORER_ITEM_ID = 240002; const GENESIS_ITEM_ID = 250001; exports.EVENTDB_STATE_PENDING = EVENTDB_STATE_PENDING; @@ -38,4 +39,5 @@ exports.ITEM_MATERIAL_CHIP_SUBTYPE = ITEM_MATERIAL_CHIP_SUBTYPE; exports.ERRCODE_SIGN_ERROR = ERRCODE_SIGN_ERROR; exports.GACHA_ITEM_ID = GACHA_ITEM_ID; +exports.EXPLORER_ITEM_ID = EXPLORER_ITEM_ID; exports.GENESIS_ITEM_ID = GENESIS_ITEM_ID;