From f44b5f97d05701390082143e83f7348f379a70c3 Mon Sep 17 00:00:00 2001 From: An Orbit <68935009+orbit-loona@users.noreply.github.com> Date: Mon, 20 May 2024 11:27:39 -0400 Subject: [PATCH] minor fix to shape cycler's nonexistent shape handling --- mods/a_mod_by_alice.js | 1 - 1 file changed, 1 deletion(-) diff --git a/mods/a_mod_by_alice.js b/mods/a_mod_by_alice.js index a73efa44..5d30f0bb 100644 --- a/mods/a_mod_by_alice.js +++ b/mods/a_mod_by_alice.js @@ -3376,7 +3376,6 @@ color1 and color2 spread through striped paint like dye does with itself. col //mod: shift+8 to change cursor shape if (e.keyCode == 56 && shiftDown) { var currentShapeIndex = shapeOrder.indexOf(currentShape); - if(currentShapeIndex < 0) { currentShapeIndex = 0 }; currentShape = shapeOrder[(currentShapeIndex + 1) % shapeOrder.length]; logMessage(`Current shape: ${currentShape}`) }