From 1481047b94d7883601bd14b9e0f3c43be46dbbdf Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Sun, 28 Apr 2024 09:24:13 -0600 Subject: [PATCH] Adjust the bug/paramecium and frame blocks in the editor palette to be more consistent --- js/editor/editordefs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/editor/editordefs.js b/js/editor/editordefs.js index bd4908d..65dbb66 100644 --- a/js/editor/editordefs.js +++ b/js/editor/editordefs.js @@ -183,8 +183,8 @@ export const PALETTE = [{ 'walker', 'fireball', 'glider', - 'bug', 'paramecium', + 'bug', 'doppelganger1', 'doppelganger2', @@ -305,8 +305,8 @@ export const PALETTE = [{ export const SPECIAL_PALETTE_ENTRIES = { 'thin_walls/south': { name: 'thin_walls', edges: DIRECTIONS['south'].bit }, 'frame_block/0': { name: 'frame_block', direction: 'south', arrows: new Set }, - 'frame_block/1': { name: 'frame_block', direction: 'north', arrows: new Set(['north']) }, - 'frame_block/2a': { name: 'frame_block', direction: 'north', arrows: new Set(['north', 'east']) }, + 'frame_block/1': { name: 'frame_block', direction: 'south', arrows: new Set(['south']) }, + 'frame_block/2a': { name: 'frame_block', direction: 'south', arrows: new Set(['south', 'west']) }, 'frame_block/2o': { name: 'frame_block', direction: 'south', arrows: new Set(['north', 'south']) }, 'frame_block/3': { name: 'frame_block', direction: 'south', arrows: new Set(['north', 'east', 'south']) }, 'frame_block/4': { name: 'frame_block', direction: 'south', arrows: new Set(['north', 'east', 'south', 'west']) },