Called after an ERR_DROP was thrown.
()
| 1592 | * Called after an ERR_DROP was thrown. |
| 1593 | */ |
| 1594 | public static void Drop() { |
| 1595 | if (ClientGlobals.cls.state == Defines.ca_uninitialized) |
| 1596 | return; |
| 1597 | if (ClientGlobals.cls.state == Defines.ca_disconnected) |
| 1598 | return; |
| 1599 | |
| 1600 | Disconnect(); |
| 1601 | |
| 1602 | // drop loading plaque unless this is the initial game start |
| 1603 | if (ClientGlobals.cls.disable_servercount != -1) |
| 1604 | SCR.EndLoadingPlaque(); // get rid of loading plaque |
| 1605 | } |
| 1606 | } |
no test coverage detected