mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
don't puke over a void field when dumping entities
This is an imperfect revision of history.
This commit is contained in:
parent
4d044bfea4
commit
0effc54835
1 changed files with 2 additions and 0 deletions
|
@ -836,6 +836,8 @@ ED_Print (progs_t *pr, edict_t *ed)
|
|||
if (!v[0].float_var && !v[1].float_var && !v[2].float_var)
|
||||
continue;
|
||||
break;
|
||||
case ev_void:
|
||||
break;
|
||||
default:
|
||||
PR_Error (pr, "ED_Print: Unhandled type %d", type);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue