diff --git a/plugins/model_chooser_2020.smx b/plugins/model_chooser_2020.smx index d8d562c..1f9761e 100644 Binary files a/plugins/model_chooser_2020.smx and b/plugins/model_chooser_2020.smx differ diff --git a/scripting/model_chooser_2020.sp b/scripting/model_chooser_2020.sp index ef37687..c9765e2 100644 --- a/scripting/model_chooser_2020.sp +++ b/scripting/model_chooser_2020.sp @@ -772,7 +772,7 @@ void ParseModels(KeyValues kv) if(duplicityChecker.SetString(model.name, "", false)) { modelList.PushArray(model); - PrecacheModel(model.path); + PrecacheModel(model.path, true); } else { SetFailState("Duplicate model name: %s", model.name); } @@ -833,7 +833,7 @@ ArrayList ParseFileItems(KeyValues kv, bool download = false, bool precacheSound } files.PushString(path); if(precacheSounds) { - PrecacheSound(path); + PrecacheSound(path, true); } if(download) { AddFileToDownloadsTable(path);