From 08931adf8611e27c6e3ad98736ef4019de4b4c4c Mon Sep 17 00:00:00 2001 From: Michael Steenbeek <1478678+Gymnasiast@users.noreply.github.com> Date: Sat, 28 Feb 2026 00:14:15 +0100 Subject: [PATCH] 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 --- src/imageList.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/imageList.ts b/src/imageList.ts index f321aa1..2899474 100644 --- a/src/imageList.ts +++ b/src/imageList.ts @@ -19,14 +19,14 @@ namespace ImageList { } function open() { - let startId = 14222; + let startId = 0; let nextId = 0; let showImageBorders = false; let primaryChecked = false; let secondaryChecked = false; - let primaryColour = 4; - let secondaryColour = 18; - let tertiaryColour = 30; + let primaryColour = 7; + let secondaryColour = 30; + let tertiaryColour = 18; const width = ui.width - 64; const height = ui.height - 96;