Use the built-in defer reply method

This commit is contained in:
2024-04-24 11:03:25 -05:00
parent c8ca1f2f11
commit 759ce8717e
3 changed files with 15 additions and 11 deletions

@ -177,7 +177,7 @@ async function validateMapAsset(assetId, game) {
const values = getMapStringValues(model);
if (!values) {
errors.push("Your map is missing a `StringValue` named `Creator` and/or a `StringValue` named `DisplayName`. You must add both to your map and they must be parented directly to the root model. These are used to set the map name and creator in-game.");
errors.push("Your map is missing a `StringValue` named `Creator` and/or a `StringValue` named `DisplayName`. You must add both to your map and they must be parented directly to the root model. These are used to set the map's creator and name in-game.");
}
else {
if (!values.creator) {