瀏覽代碼

FormatInt for int64.

Steve Thielemann 3 年之前
父節點
當前提交
eb76e806d9
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      playcards.go

+ 7 - 1
playcards.go

@@ -23,6 +23,7 @@ type PlayCards struct {
 	Play_day       time.Time
 	Play_day_t     int64
 	Days_played    int
+	Hand           int
 }
 
 // Adjust date to 2:00 AM
@@ -58,7 +59,7 @@ func (pc *PlayCards) Init() {
 	pc.Days_played, _ = strconv.Atoi(days)
 
 	if last_played != pc.Play_day_t {
-		pc.DB.SetSetting("last_played", strconv.Itoa(int(pc.Play_day_t)))
+		pc.DB.SetSetting("last_played", strconv.FormatInt(pc.Play_day_t, 10))
 		pc.DB.SetSetting("days_played", "0")
 		pc.Days_played = 0
 	}
@@ -72,4 +73,9 @@ func (pc *PlayCards) Init() {
 		pc.Seeds = append(pc.Seeds, int32(i))
 	}
 
+	pc.Hand = 0
+	pc.Total_hands = 0
+
+	// Panels ?
+
 }