diff options
author | 2024-08-27 17:46:34 +0100 | |
---|---|---|
committer | 2024-08-29 23:08:03 +0100 | |
commit | 98d046645644ff59718a46e2d2bbc6b5f4620b28 (patch) | |
tree | b872b1703ae26ebf77c99fb20fe2460b246d4b56 /src/engineapi.c | |
parent | 45a2f22f4ef7e251b0183e5bae71ad12967a9f52 (diff) | |
download | sst-98d046645644ff59718a46e2d2bbc6b5f4620b28.tar.gz sst-98d046645644ff59718a46e2d2bbc6b5f4620b28.zip |
Fix mkentprops for real this time, probably
Last fix was apparently enough to make the release work, but not enough
to actually work in general, lol. With any luck, it's actually good now.
Diffstat (limited to 'src/engineapi.c')
-rw-r--r-- | src/engineapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engineapi.c b/src/engineapi.c index b92de4d..6489d53 100644 --- a/src/engineapi.c +++ b/src/engineapi.c @@ -116,7 +116,7 @@ void engineapi_lateinit(void) { // by doing this at the deferred stage, we avoid having to abs() everything if (srvdll && has_vtidx_GetAllServerClasses && has_sz_SendProp && has_off_SP_varname && has_off_SP_type && has_off_SP_offset && - has_DT_DataTable) { + has_DPT_DataTable) { initentprops(GetAllServerClasses(srvdll)); } } |