diff --git a/interactions/models/discord/guild.py b/interactions/models/discord/guild.py index dc18c2df8..cdb72883c 100644 --- a/interactions/models/discord/guild.py +++ b/interactions/models/discord/guild.py @@ -439,6 +439,21 @@ def voice_states(self) -> List["models.VoiceState"]: # noinspection PyProtectedMember return [v_state for v_state in self._client.cache.voice_state_cache.values() if v_state._guild_id == self.id] + @property + def mention_onboarding_customize(self) -> str: + """Return a mention string for the customise section of Onboarding""" + return "" + + @property + def mention_onboarding_browse(self) -> str: + """Return a mention string for the browse section of Onboarding""" + return "" + + @property + def mention_onboarding_guide(self) -> str: + """Return a mention string for the guide section of Onboarding""" + return "" + async def fetch_member(self, member_id: Snowflake_Type, *, force: bool = False) -> Optional["models.Member"]: """ Return the Member with the given discord ID, fetching from the API if necessary.