diff --git a/bot/modules/accountability/commands.py b/bot/modules/accountability/commands.py index c1580dd8..6180d4bd 100644 --- a/bot/modules/accountability/commands.py +++ b/bot/modules/accountability/commands.py @@ -62,7 +62,7 @@ def ensure_exclusive(ctx): @module.cmd( name="rooms", - desc="Book an accountability timeslot", + desc="Schedule an accountability study session.", group="Productivity" ) @in_guild() diff --git a/bot/modules/meta/help.py b/bot/modules/meta/help.py index ce71efa6..35adafef 100644 --- a/bot/modules/meta/help.py +++ b/bot/modules/meta/help.py @@ -40,15 +40,15 @@ bot_admin_group_order = ( # Help embed format # TODO: Add config fields for this -title = "LionBot Command List" +title = "StudyLion Command List" header = """ -Use `{ctx.best_prefix}help ` (e.g. `{ctx.best_prefix}help send`) to see how to use each command. +Use `{ctx.best_prefix}help ` (e.g. `{ctx.best_prefix}help send`) to see how to use each command. """ @module.cmd("help", group="Meta", - desc="LionBot command list.") + desc="StudyLion command list.") async def cmd_help(ctx): """ Usage``: diff --git a/bot/modules/renting/commands.py b/bot/modules/renting/commands.py index 72b5c8f3..ccaaece2 100644 --- a/bot/modules/renting/commands.py +++ b/bot/modules/renting/commands.py @@ -7,7 +7,7 @@ from .rooms import Room @module.cmd( name="rent", - desc="Rent a private study room!", + desc="Rent a private study room with your friends!", group="Productivity", aliases=('add',) ) diff --git a/bot/modules/todo/commands.py b/bot/modules/todo/commands.py index 2b21dc4b..9932c6d4 100644 --- a/bot/modules/todo/commands.py +++ b/bot/modules/todo/commands.py @@ -9,7 +9,7 @@ from .Tasklist import Tasklist @module.cmd( name="todo", - desc="Display and edit your personal TODO list.", + desc="Display and edit your personal To-Do list.", group="Productivity", flags=('add==', 'delete==', 'check==', 'uncheck==', 'edit==') )