Fixing issue #73

This commit is contained in:
neauoire 2020-03-24 20:16:59 +09:00
parent e701d78ef0
commit 9f50ce97b4

View File

@ -229,7 +229,8 @@ function Tool (client) {
// Cannot cast close twice
if (type === 'close') {
const prev = this.layer()[this.layer().length - 1]
if (!prev || prev.type === 'close') {
console.log(this.vertices.length)
if (!prev || prev.type === 'close' || this.vertices.length !== 0) {
return false
}
}