no longer requiring at least one colon in a scene config element
This now allows for `player;` instead of requiring `player:;`pull/19/head
parent
5ee5292e88
commit
baf75c9c78
|
@ -177,7 +177,7 @@ int _validate_config(FILE* file) {
|
||||||
}
|
}
|
||||||
} while(c != ';');
|
} while(c != ';');
|
||||||
|
|
||||||
return colon_count == 1;
|
return colon_count <= 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static
|
static
|
||||||
|
|
Loading…
Reference in New Issue