Sfoglia il codice sorgente

chore: set the fallback model ratio to 30

JustSong 2 anni fa
parent
commit
24a4b323eb
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      common/model-ratio.go

+ 1 - 1
common/model-ratio.go

@@ -54,7 +54,7 @@ func GetModelRatio(name string) float64 {
 	ratio, ok := ModelRatio[name]
 	if !ok {
 		SysError("Model ratio not found: " + name)
-		return 1
+		return 30
 	}
 	return ratio
 }