From 0eb97513270375b379420644c764cae77b1550c3 Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 19 Aug 2021 18:43:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=98=E5=8A=9B=EF=BC=9A=E5=B0=8F=E6=95=B0?= =?UTF-8?q?=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/pubUtils/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/pubUtils/data.ts b/shared/pubUtils/data.ts index 7105368f6..e578b69da 100644 --- a/shared/pubUtils/data.ts +++ b/shared/pubUtils/data.ts @@ -677,7 +677,7 @@ function getHeroTransPiece() { function getCeRatio() { let arr = decodeArrayListStr(param.ATTRIBUTE.ATTRIBUTE_POWER); gameData.ceRatio = arr.map(cur => { - return { type: parseInt(cur[0]), val: parseInt(cur[1]) } + return { type: parseInt(cur[0]), val: parseFloat(cur[1]) } }); }