$$ACTION Custom Destroy Droid Central cDestroyDroidCentral Destroys Droid Central stops and destroys all active droids. Parameters: None $$END */
| 1437 | $$END |
| 1438 | */ |
| 1439 | void cDestroyDroidCentral() { |
| 1440 | int i; |
| 1441 | for (i = 0; i < DC_N_DROIDS; i++) { |
| 1442 | if (dc_nodes[i].handle != OBJECT_HANDLE_NONE) { |
| 1443 | aObjDestroy(dc_nodes[i].handle); |
| 1444 | } |
| 1445 | } |
| 1446 | cResetDroidCentral(); |
| 1447 | DC_EQR = -100; |
| 1448 | } |
| 1449 | |
| 1450 | /* |
| 1451 | $$ACTION |
nothing calls this directly
no test coverage detected