Compare commits

..

No commits in common. "50e9abe5d2e2840a62edfdf7d73f01840ab4eb0e" and "cb9300d1efbffd618552e5907106f0eeb1eeb452" have entirely different histories.

View File

@ -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;
}