no longer requiring at least one colon in a scene config element

This now allows for `player;` instead of requiring `player:;`
pull/19/head
Sara 2023-07-17 00:36:37 +02:00
parent 5ee5292e88
commit baf75c9c78
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ int _validate_config(FILE* file) {
}
} while(c != ';');
return colon_count == 1;
return colon_count <= 1;
}
static