adds a special cased CounterMeasure into the inventory
| 250 | |
| 251 | // adds a special cased CounterMeasure into the inventory |
| 252 | bool dInven_AddCounterMeasure(Inventory *inven, int id, int aux_type, int aux_id, int flags, char *description) { |
| 253 | return inven->AddCounterMeasure(id, aux_type, aux_id, flags, description); |
| 254 | } |
| 255 | |
| 256 | // removes an item from the inventory (reduces it's count by one...if there is no more, then it goes bye-bye) |
| 257 | // to remove an object that was added via objhandle, then pass the objhandle |
nothing calls this directly
no test coverage detected