| 45 | } |
| 46 | |
| 47 | void Server_RetrieveTexturePack(const cc_string* url) { |
| 48 | if (!Game_AllowServerTextures || TextureUrls_HasDenied(url)) return; |
| 49 | |
| 50 | if (!url->length || TextureUrls_HasAccepted(url)) { |
| 51 | TexturePack_Extract(url); |
| 52 | } else { |
| 53 | TexPackOverlay_Show(url); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | |
| 58 | /*########################################################################################################################* |
no test coverage detected