关闭sdk屏蔽

This commit is contained in:
luying
2022-07-02 13:51:30 +08:00
parent 59954961ee
commit ddc980456b
3 changed files with 10 additions and 3 deletions

View File

@@ -155,6 +155,6 @@ export function isDebugPay() {
return gameData.serverConst.DEBUG_PAY === 1;
}
export function isCheckWord() {
return gameData.serverConst.CHECK_WORD === 1;
export function isCheckWord(isDevelop = false) {
return gameData.serverConst.CHECK_WORD === 1 && !isDevelop;
}