1
問題のある箇所がわかりません。誰でも知っている理由は?フィールドのインデックスを作成しようとしていますか? (nil値)
function check(board, color, row, col)
--if same color, change tile to "o"
if board[row][col] == color then -- attempt to index nil?
board[row][col] = "o"
count = count + 1
return "o"
end
return
端