@@ -1226,7 +1226,10 @@ async def edit(self, *, reason=None, **options):
12261226 position: :class:`int`
12271227 The new channel's position.
12281228 nsfw: :class:`bool`
1229- Whether the channel is marked as NSFW.
1229+ Whether the channel is marked as NSFW. Mutually exclusive with :attr:`spoiler`.
1230+
1231+ .. note::
1232+ Passing both this and ``spoiler`` as ``True`` will mark the channel as NSFW and ignore the spoiler flag.
12301233 sync_permissions: :class:`bool`
12311234 Whether to sync permissions with the channel's new or pre-existing
12321235 category. Defaults to ``False``.
@@ -1271,6 +1274,9 @@ async def edit(self, *, reason=None, **options):
12711274
12721275 .. versionadded:: 2.9
12731276
1277+ .. note::
1278+ Passing both this and ``nsfw`` as ``True`` will mark the channel as NSFW and ignore the spoiler flag.
1279+
12741280 Returns
12751281 -------
12761282 Optional[:class:`.ForumChannel`]
@@ -1644,7 +1650,10 @@ async def edit(self, *, reason=None, **options):
16441650 position: :class:`int`
16451651 The new channel's position.
16461652 nsfw: :class:`bool`
1647- Whether the channel is marked as NSFW.
1653+ Whether the channel is marked as NSFW. Mutually exclusive with :attr:`spoiler`.
1654+
1655+ .. note::
1656+ Passing both this and ``spoiler`` as ``True`` will mark the channel as NSFW and ignore the spoiler flag.
16481657 sync_permissions: :class:`bool`
16491658 Whether to sync permissions with the channel's new or pre-existing
16501659 category. Defaults to ``False``.
@@ -1686,6 +1695,9 @@ async def edit(self, *, reason=None, **options):
16861695
16871696 .. versionadded:: 2.9
16881697
1698+ .. note::
1699+ Passing both this and ``nsfw`` as ``True`` will mark the channel as NSFW and ignore the spoiler flag.
1700+
16891701 Returns
16901702 -------
16911703 Optional[:class:`.MediaChannel`]
@@ -2312,15 +2324,21 @@ async def edit(self, *, reason=None, **options):
23122324 A value of `0` disables slowmode. The maximum value possible is `21600`.
23132325
23142326 nsfw: :class:`bool`
2315- Whether the channel is marked as NSFW.
2327+ Whether the channel is marked as NSFW. Mutually exclusive with :attr:`spoiler`.
23162328
23172329 .. versionadded:: 2.7
23182330
2331+ .. note::
2332+ Passing both this and ``spoiler`` as ``True`` will mark the channel as NSFW and ignore the spoiler flag.
2333+
23192334 spoiler: :class:`bool`
23202335 Whether the channel should be a spoiler channel. Mutually exclusive with :attr:`nsfw`.
23212336
23222337 .. versionadded:: 2.9
23232338
2339+ .. note::
2340+ Passing both this and ``nsfw`` as ``True`` will mark the channel as NSFW and ignore the spoiler flag.
2341+
23242342 Returns
23252343 -------
23262344 Optional[:class:`.VoiceChannel`]
0 commit comments