about summary refs log tree commit diff
diff options
context:
space:
mode:
authoremile <hanemile@protonmail.com>2018-10-17 14:04:02 +0200
committeremile <hanemile@protonmail.com>2018-10-17 14:04:02 +0200
commit4cee03b9482f519e312b40ef4d969005a629c01e (patch)
tree5a09ec01e802fd9550a10c605a35c77ee5050daa
parent079789a3d5bf873a2403dfe357b06d1a72463251 (diff)
The stars now get a random Mass when initialized from a file.
-rw-r--r--csv/csv.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/csv/csv.go b/csv/csv.go
index aca131b..bef3bd9 100644
--- a/csv/csv.go
+++ b/csv/csv.go
@@ -4,6 +4,7 @@ import (
 	"../file"
 	"../structs"
 	"git.darknebu.la/bit/logplus"
+	"math/rand"
 	"strconv"
 )
 
@@ -29,7 +30,7 @@ func Import(path string, start int, end int, slice []structs.Star2D) []structs.S
 		// Create a temporary star for assembling the star
 		tempStar := structs.Star2D{
 			C: structs.Vec2{X: x, Y: y},
-			M: 50000,
+			M: float64(rand.Intn(50000)),
 		}
 
 		// Add the Temporary star to the slice