diff options
Diffstat (limited to 'tris/core.go')
-rw-r--r-- | tris/core.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tris/core.go b/tris/core.go index 0b5afff..d0164e2 100644 --- a/tris/core.go +++ b/tris/core.go @@ -44,9 +44,9 @@ type Placement struct { Lock time.Time } -func (p Placement) Collide(f Field) bool { //TODO: Fix first piece collision bug +func (p Placement) Collide(f Field) bool { pf, ok := p.Field() - for x := 0; x < 9; x++ { + for x := 0; x < 10; x++ { for y := 0; y < 20; y++ { if f[y][x] && pf[y][x] { return true |