| 2419 | } |
| 2420 | |
| 2421 | DWORD On_DEACTIVATEPORTAL(TCmd *pCmd, int pnum) |
| 2422 | { |
| 2423 | if (gbBufferMsgs == 1) |
| 2424 | msg_send_packet(pnum, pCmd, sizeof(*pCmd)); |
| 2425 | else { |
| 2426 | if (PortalOnLevel(pnum)) |
| 2427 | RemovePortalMissile(pnum); |
| 2428 | DeactivatePortal(pnum); |
| 2429 | RemovePlrPortal(pnum); |
| 2430 | } |
| 2431 | |
| 2432 | return sizeof(*pCmd); |
| 2433 | } |
| 2434 | |
| 2435 | DWORD On_RETOWN(TCmd *pCmd, int pnum) |
| 2436 | { |
no test coverage detected