From a1a45daaab2accdbc6df50c5cd331548e1576380 Mon Sep 17 00:00:00 2001 From: Arkshine Date: Tue, 4 Sep 2018 15:11:27 +0200 Subject: [PATCH] Replace entity creation by a variable --- amxmodx/meta_api.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/amxmodx/meta_api.cpp b/amxmodx/meta_api.cpp index 50614ca7..ac41805e 100755 --- a/amxmodx/meta_api.cpp +++ b/amxmodx/meta_api.cpp @@ -770,7 +770,7 @@ void C_ServerActivate_Post(edict_t *pEdictList, int edictCount, int clientMax) } }; - const auto pEntity = CREATE_ENTITY(); + edict_t entity; for (auto index = 1u; index < ARRAYSIZE(Server->model_precache); index++) { @@ -786,16 +786,14 @@ void C_ServerActivate_Post(edict_t *pEdictList, int edictCount, int clientMax) continue; } - pEntity->v.modelindex = index; + entity.v.modelindex = index; - const auto pStudioHeader = static_cast(GET_MODEL_PTR(pEntity)); + const auto pStudioHeader = static_cast(GET_MODEL_PTR(&entity)); precacheTextures(model, pStudioHeader); precacheGroups(pStudioHeader); precacheSounds(pStudioHeader); } - - REMOVE_ENTITY(pEntity); } g_activated = true;