Bradley APC support not working
Added  "3.5 NPC Names": { "bradleyapc":"Powerful Tank"}
Useless...
In response to Arainrr ():
Added  "3.5 NPC Names": { "bradleyapc":"Powerful Tank"}
Useless...
You have to change a line in plugins\KillFeed.cs


From This
if (!(entity is BaseNpc) && !(entity is BaseHelicopter) && entity.ToPlayer() == null) return;       // if the entity isn't an animal, patrolhelicopter or player, return​​


To This

if (!(entity is BaseNpc) && !(entity is BaseHelicopter) && !(entity.ShortPrefabName == "bradleyapc") && entity.ToPlayer() == null) return;       // if the entity isn't an animal, patrolhelicopter or player, return​