Skip to content

Commit ecd64a5

Browse files
committed
ImageList: start at index 0, use better starting colours
Changed the colours to match the normal values for the secondary and tertiary remap. In other words: no more pink coins by default
1 parent 9cd37ed commit ecd64a5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/imageList.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ namespace ImageList {
1919
}
2020

2121
function open() {
22-
let startId = 14222;
22+
let startId = 0;
2323
let nextId = 0;
2424
let showImageBorders = false;
2525
let primaryChecked = false;
2626
let secondaryChecked = false;
27-
let primaryColour = 4;
28-
let secondaryColour = 18;
29-
let tertiaryColour = 30;
27+
let primaryColour = 7;
28+
let secondaryColour = 30;
29+
let tertiaryColour = 18;
3030

3131
const width = ui.width - 64;
3232
const height = ui.height - 96;

0 commit comments

Comments
 (0)