Skip to content

Commit e5d3e46

Browse files
committed
2.3.4
1 parent 8c53fb7 commit e5d3e46

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mcd_task/command_actions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def inherit_responsible(info: Info, old_name: str, new_name: str, debug=False):
380380

381381

382382
def task_timed_out(server: PluginServerInterface, player: str, player_tasks: List[Task]):
383-
text = tr("on_player_joined", len(player_tasks)).set_color(RColor.red).set_styles(RStyle.bold)
383+
text = [tr("on_player_joined", len(player_tasks)).set_color(RColor.red).set_styles(RStyle.bold)]
384384
for t in player_tasks:
385-
text.append('\n', title_text(t, display_full_path=True, display_not_empty_mark=True))
386-
server.tell(player, text)
385+
text.append(title_text(t, display_full_path=True, display_not_empty_mark=True))
386+
server.tell(player, RTextBase.join('\n', text))

mcdreforged.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "mcd_task",
3-
"version": "2.3.3+build.65",
3+
"version": "2.3.4+build.66",
44
"name": "Task",
55
"description": {
66
"en_us": "A plugin to show tasks of project in progress",

0 commit comments

Comments
 (0)