Skip to content

Commit 320fa67

Browse files
committed
Typo
1 parent 351ee43 commit 320fa67

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.
77
however, insignificant breaking changes does not guarantee a major version bump, see the reasoning [here](https://github.com/kyb3r/modmail/issues/319).
88

99

10-
# v3.3.0-dev4
10+
# v3.3.0-dev5
1111

1212

1313
### Important

cogs/modmail.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1270,19 +1270,19 @@ async def isenable(self, ctx):
12701270
if self.bot.config["dm_disabled"] == 1:
12711271
embed = discord.Embed(
12721272
title="New Threads Disabled",
1273-
description=f"Modmail will not create any new threads.",
1274-
color=self.bot.main_color,
1273+
description=f"Modmail is not creating new threads.",
1274+
color=self.bot.error_color,
12751275
)
12761276
elif self.bot.config["dm_disabled"] == 2:
12771277
embed = discord.Embed(
12781278
title="All DM Disabled",
1279-
description=f"Modmail will accept any DM messages for new and existing threads.",
1280-
color=self.bot.main_color,
1279+
description=f"Modmail is not accepting any DM messages for new and existing threads.",
1280+
color=self.bot.error_color,
12811281
)
12821282
else:
12831283
embed = discord.Embed(
12841284
title="Enabled",
1285-
description=f"Modmail is receiving all DM messages.",
1285+
description=f"Modmail is accepting all DM messages.",
12861286
color=self.bot.main_color,
12871287
)
12881288

0 commit comments

Comments
 (0)