Fixed an off-by-one error

This commit is contained in:
Anna Rose 2012-04-13 01:01:07 -04:00
parent 5ad1eb46e9
commit 46187886ed

View File

@ -186,7 +186,7 @@ class Goban:
return 'ul' return 'ul'
if pos == 18: if pos == 18:
return 'ur' return 'ur'
if pos == 341: if pos == 342:
return 'dl' return 'dl'
if pos == 360: if pos == 360:
return 'dr' return 'dr'