git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3638
d7cf8633-e32d-0410-b094-
e92efae38249
Host_Error("remove: tried to remove world\n");
if (NUM_FOR_EDICT(ed) <= svs.maxclients)
Host_Error("remove: tried to remove a client\n");
- if (ed->e->free)
- Host_Error("remove: tried to remove an entity that was already removed\n");
+ // LordHavoc: not an error because id1 progs did this in some cases (killtarget removes entities, even if they are already removed in some cases...)
+ if (ed->e->free && developer.integer)
+ Con_Printf("remove: tried to remove an entity that was already removed\n");
ED_Free (ed);
}