From cf031980352db814dc02782d90342bc70694d733 Mon Sep 17 00:00:00 2001 From: Carter Penterman Date: Wed, 1 May 2024 15:20:58 -0500 Subject: [PATCH] Fix mapstart/finish CanCollide check --- common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }