From db63b0a19a6c9e438f70d2a3831e90051bb4db46 Mon Sep 17 00:00:00 2001 From: EdgeGD <76396699+EdgeGD@users.noreply.github.com> Date: Fri, 2 Jul 2021 13:43:09 +0700 Subject: [PATCH 1/3] Update weeks.md update 1 small info on adding a new boolean for the weeks to play or smth --- docs/guides/weeks.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guides/weeks.md b/docs/guides/weeks.md index 90b89ca..020fc5d 100644 --- a/docs/guides/weeks.md +++ b/docs/guides/weeks.md @@ -149,6 +149,7 @@ Example ![frrf 2](https://user-images.githubusercontent.com/68293280/118160865-b8830e00-b3d3-11eb-8a23-818a1b4cfdb2.png) NOTE: You will have to add a new item to `weekUnlocked`, so that the week is playable. +Locate to line 39 and add in a new boolean called True so that the week can be playable. ![frrf 3](https://user-images.githubusercontent.com/68293280/118161461-7908f180-b3d4-11eb-89fa-e531ae5804d8.png) From bbe3cf1a3eb01b152e12b0c4ffda63b5edcb202d Mon Sep 17 00:00:00 2001 From: Prokube <68293280+prokube@users.noreply.github.com> Date: Sat, 10 Jul 2021 06:43:57 -0700 Subject: [PATCH 2/3] Create `.vscode/` --- .vscode/.temp | 1 + 1 file changed, 1 insertion(+) create mode 100644 .vscode/.temp diff --git a/.vscode/.temp b/.vscode/.temp new file mode 100644 index 0000000..177a799 --- /dev/null +++ b/.vscode/.temp @@ -0,0 +1 @@ +TBA: tasks.json From 3cb6ea739370ea1546ca47f3009356cbefde2a1c Mon Sep 17 00:00:00 2001 From: Prokube <68293280+prokube@users.noreply.github.com> Date: Sat, 10 Jul 2021 06:48:18 -0700 Subject: [PATCH 3/3] A --- .vscode/tasks.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..0930c09 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,21 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "lime", + "command": "test", + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "type": "lime", + "command": "build", + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}