From 96d36f86f0ffcb6e92b13ee38833559d09a7dfce Mon Sep 17 00:00:00 2001 From: AllyTally Date: Thu, 30 Nov 2023 22:13:52 -0400 Subject: [PATCH] Change 0s to 713 for lab background This is so it gets treated as a background tile, so background tiles don't get thrown away when you shift tilesets. --- desktop_version/src/Editor.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/desktop_version/src/Editor.cpp b/desktop_version/src/Editor.cpp index 125ada23..d6ded494 100644 --- a/desktop_version/src/Editor.cpp +++ b/desktop_version/src/Editor.cpp @@ -259,13 +259,13 @@ editorclass::editorclass(void) register_tilecol(EditorTileset_OUTSIDE, 6, "basic", 498, "outside", 698); register_tilecol(EditorTileset_OUTSIDE, 7, "basic", 501, "outside", 701); - register_tilecol(EditorTileset_LAB, 0, "lab_cyan", 280, "none", 0); - register_tilecol(EditorTileset_LAB, 1, "lab_red", 283, "none", 0); - register_tilecol(EditorTileset_LAB, 2, "lab_pink", 286, "none", 0); - register_tilecol(EditorTileset_LAB, 3, "basic", 289, "none", 0); - register_tilecol(EditorTileset_LAB, 4, "lab_yellow", 292, "none", 0); - register_tilecol(EditorTileset_LAB, 5, "lab_green", 295, "none", 0); - register_tilecol(EditorTileset_LAB, 6, "none", 0, "none", 0, true); + register_tilecol(EditorTileset_LAB, 0, "lab_cyan", 280, "none", 713); + register_tilecol(EditorTileset_LAB, 1, "lab_red", 283, "none", 713); + register_tilecol(EditorTileset_LAB, 2, "lab_pink", 286, "none", 713); + register_tilecol(EditorTileset_LAB, 3, "basic", 289, "none", 713); + register_tilecol(EditorTileset_LAB, 4, "lab_yellow", 292, "none", 713); + register_tilecol(EditorTileset_LAB, 5, "lab_green", 295, "none", 713); + register_tilecol(EditorTileset_LAB, 6, "none", 0, "none", 713, true); register_tilecol(EditorTileset_WARP_ZONE, 0, "basic", 80, "none", 120); register_tilecol(EditorTileset_WARP_ZONE, 1, "basic", 83, "none", 123);