diff --git a/.github/workflows/todo.yml b/.github/workflows/todo.yml index f9f59d11..4d894cfa 100644 --- a/.github/workflows/todo.yml +++ b/.github/workflows/todo.yml @@ -9,4 +9,4 @@ jobs: uses: "alstr/todo-to-issue-action@v4" with: IDENTIFIERS: '[{"name": "TODO", "labels": []}, {"name": "FIXME", "labels": ["bug"]}]' - ISSUE_TEMPLATE: '{{ title }}\n\n{{ body }}\n\n{{ url }}\n\n' + ISSUE_TEMPLATE: "{{ title }}\n\n{{ body }}\n\n{{ url }}\n\n" diff --git a/minecraft-server/src/world/mod.rs b/minecraft-server/src/world/mod.rs index 687c8b99..414ada9f 100644 --- a/minecraft-server/src/world/mod.rs +++ b/minecraft-server/src/world/mod.rs @@ -15,7 +15,7 @@ pub struct World { entities: Entities, loading_manager: RwLock, - change_senders: RwLock>>, + change_senders: RwLock>>, // TODO: Add a way to select events you want to subscribe to } impl World {