fix: ship production math

This commit is contained in:
IliaDenisov
2026-02-05 21:35:13 +03:00
committed by Ilia Denisov
parent 9088cc77c9
commit 327f2865d4
10 changed files with 158 additions and 205 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ func F(v float64) Float {
}
func (f Float) Add(v float64) Float {
return F(f.F() + v)
return f + F(v)
}
func (f Float) F() float64 {