mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-25 18:00:25 +00:00
fix toy thing
This commit is contained in:
parent
4408a20f2e
commit
468c650baa
2 changed files with 4 additions and 4 deletions
|
@ -41,7 +41,7 @@ const id = "toys";
|
||||||
const day = 17;
|
const day = 17;
|
||||||
|
|
||||||
const layer = createLayer(id, function (this: BaseLayer) {
|
const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
const name = "Toys";
|
const name = "toys";
|
||||||
const colorBright = "#4BDC13";
|
const colorBright = "#4BDC13";
|
||||||
const colorDark = "green";
|
const colorDark = "green";
|
||||||
|
|
||||||
|
|
|
@ -406,7 +406,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
createDay(() => ({
|
createDay(() => ({
|
||||||
day: 17,
|
day: 17,
|
||||||
shouldNotify: false,
|
shouldNotify: false,
|
||||||
layer: "toys 1", // "toys 1"
|
layer: "toys", // "toys1"
|
||||||
symbol: "",
|
symbol: "",
|
||||||
story: "",
|
story: "",
|
||||||
completedStory: "",
|
completedStory: "",
|
||||||
|
@ -415,7 +415,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
createDay(() => ({
|
createDay(() => ({
|
||||||
day: 18,
|
day: 18,
|
||||||
shouldNotify: false,
|
shouldNotify: false,
|
||||||
layer: null, // "toys 2"
|
layer: null, // "toys2"
|
||||||
symbol: "",
|
symbol: "",
|
||||||
story: "",
|
story: "",
|
||||||
completedStory: "",
|
completedStory: "",
|
||||||
|
@ -424,7 +424,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
createDay(() => ({
|
createDay(() => ({
|
||||||
day: 19,
|
day: 19,
|
||||||
shouldNotify: false,
|
shouldNotify: false,
|
||||||
layer: null, // "toys 3"
|
layer: null, // "toys3"
|
||||||
symbol: "",
|
symbol: "",
|
||||||
story: "",
|
story: "",
|
||||||
completedStory: "",
|
completedStory: "",
|
||||||
|
|
Loading…
Reference in a new issue