diff --git a/common.js b/common.js index c64d7d9..9a1f53f 100644 --- a/common.js +++ b/common.js @@ -213,7 +213,7 @@ async function validateMapAsset(assetId, game) { const mapParts = Array.from(mapStarts); mapParts.push(...mapFinishes); for (const part of mapParts) { - if (!part.CanCollide) { + if (part.CanCollide) { errors.push("The `MapStart` and `MapFinish` parts in your map must have the `CanCollide` property disabled."); break; }