diff --git a/JJMumbleBot/plugins/core/core_commands/core_commands.py b/JJMumbleBot/plugins/core/core_commands/core_commands.py
index 01d38dd4..1cb8b1ca 100644
--- a/JJMumbleBot/plugins/core/core_commands/core_commands.py
+++ b/JJMumbleBot/plugins/core/core_commands/core_commands.py
@@ -215,7 +215,7 @@ def cmd_help(self, data):
f'Plugin Version: {plugin_metadata[C_PLUGIN_INFO][P_PLUGIN_VERS]}
', text_color='cyan')
GS.gui_service.append_row(content)
for x, help_item in enumerate(all_help_lines):
- item_parts = help_item.split(':', 1)
+ item_parts = help_item.rsplit(':', 1)
if len(item_parts) > 1:
content = GS.gui_service.make_content(
f'{item_parts[0]}:{item_parts[1]}',