Skip to content
Merged

Dev cur #1238

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csqc/weapon_predict.qc
Original file line number Diff line number Diff line change
Expand Up @@ -2057,7 +2057,7 @@ static void WP_UpdatePredict() {
pengine.is_effectframe = TRUE;
pengine.last_effectframe = pframe;
PM_SyncTo(pframe);
Conc_Update(&pstate_pred.conc_state, world, pstate_pred.server_time);
/* Conc_Update(&pstate_pred.conc_state, world, pstate_pred.server_time); */
} else {
pengine.is_effectframe = FALSE;
}
Expand Down
5 changes: 2 additions & 3 deletions share/prediction.qc
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,9 @@ void Predict_AddFilterEnt(entity p, entity filter) {
if (p.predict_flags & PF_PMOVE == 0)
return;

if (ps->num_filter_ents >= 4);
return

predict_tf_state* ps = &p.predict_state;
if (ps->num_filter_ents >= 4)
return
ps->filter_ents[ps->num_filter_ents++] = filter;
}

Expand Down