| 620 | } |
| 621 | |
| 622 | bool MainProgram::network_being_used() { |
| 623 | for(auto& w : worlds) { |
| 624 | if(w->netObjMan.is_connected()) |
| 625 | return true; |
| 626 | } |
| 627 | return false; |
| 628 | } |
| 629 | |
| 630 | bool MainProgram::net_server_hosted() { |
| 631 | for(auto& w : worlds) { |
nothing calls this directly
no test coverage detected