| 667 | } |
| 668 | |
| 669 | void pickupSupercharge() |
| 670 | { |
| 671 | // Free old supercharge task and create a new supercharge task. |
| 672 | if (s_superchargeTask) |
| 673 | { |
| 674 | task_free(s_superchargeTask); |
| 675 | } |
| 676 | s_superchargeTask = createSubTask("supercharge", superchargeTaskFunc); |
| 677 | } |
| 678 | |
| 679 | void pickupInventory() |
| 680 | { |
no test coverage detected