From 59413dda7610790d3fd4d0053f48167157e322fb Mon Sep 17 00:00:00 2001 From: cdle <798731886@qq.com> Date: Wed, 18 Aug 2021 16:30:30 +0800 Subject: [PATCH] x --- models/asset.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/asset.go b/models/asset.go index 2cf376f..a62cb57 100644 --- a/models/asset.go +++ b/models/asset.go @@ -409,7 +409,7 @@ func initFarm(cookie string, state chan string) { if a.TreeState == 2 || a.TreeState == 3 { rt += "已可领取⏰" } else if a.TreeState == 1 { - rt += fmt.Sprintf("种植中,进度%.2f%%🍒", 1-float64(a.FarmUserPro.TreeTotalEnergy)/float64(a.FarmUserPro.TreeEnergy)) + rt += fmt.Sprintf("种植中,进度%.2f%%🍒", 1-(float64(a.FarmUserPro.TreeTotalEnergy)/float64(a.FarmUserPro.TreeEnergy))) } else if a.TreeState == 0 { rt = "您忘了种植新的水果⏰" } @@ -515,7 +515,7 @@ func initPetTown(cookie string, state chan string) { state <- rt } -func jsGold(cookie string, state chan int64) { +func jsGold(cookie string, state chan int64) { // type BalanceVO struct { CashBalance string `json:"cashBalance"`