diff --git a/mcstatus/status_response.py b/mcstatus/status_response.py index 8bd98379..239e6a71 100644 --- a/mcstatus/status_response.py +++ b/mcstatus/status_response.py @@ -213,6 +213,15 @@ def _parse_motd(raw_motd: RawJavaResponseMotd) -> str: return description + end + @property + @deprecated(replacement="icon", date="2023-08") + def favicon(self) -> str | None: + """ + .. deprecated:: 11.0.0 + Will be removed 2023-08, use :attr:`icon ` instead. + """ + return self.icon + @dataclass class BedrockStatusResponse(BaseStatusResponse):