| 785 | } |
| 786 | |
| 787 | bool CHalfLife2::IsLANServer() |
| 788 | { |
| 789 | static ConVar *sv_lan = icvar->FindVar("sv_lan"); |
| 790 | |
| 791 | if (!sv_lan) |
| 792 | { |
| 793 | return false; |
| 794 | } |
| 795 | |
| 796 | return (sv_lan->GetInt() != 0); |
| 797 | } |
| 798 | |
| 799 | bool CHalfLife2::KVLoadFromFile(KeyValues *kv, IBaseFileSystem *filesystem, const char *resourceName, const char *pathID) |
| 800 | { |
no test coverage detected