diff options
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()...) } |