diff options
author | Joop Kiefte <ikojba@gmail.com> | 2020-09-20 09:44:21 +0200 |
---|---|---|
committer | Joop Kiefte <ikojba@gmail.com> | 2020-09-20 09:44:21 +0200 |
commit | de36bfd4aecb683c128fb4294de545317fc0edab (patch) | |
tree | 1a33dd93d772fda98533565ea5c416606961fa2a /tris/next.go | |
parent | f8ec632ce36fa33aadfb28f515ac585b45118179 (diff) |
Fix nextbox colors
Diffstat (limited to 'tris/next.go')
-rw-r--r-- | tris/next.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tris/next.go b/tris/next.go index e72a4ff..1a9903f 100644 --- a/tris/next.go +++ b/tris/next.go @@ -1,7 +1,7 @@ package tris func (b Bag) Next(n int) (Bag, Field) { - var f Field + f := NewField(20, 4) for len(b) < n { b = append(b, NewBag()...) } |