fix: 修复mj固定价格设置无效的问题

This commit is contained in:
CaIon
2024-01-07 23:40:06 +08:00
parent 29dbdf01f0
commit e2d994d73a
2 changed files with 8 additions and 8 deletions

View File

@@ -109,7 +109,7 @@ func GetModelPrice(name string) float64 {
}
price, ok := ModelPrice[name]
if !ok {
//SysError("model price not found: " + name)
SysError("model price not found: " + name)
return -1
}
return price