From 4e32e3774b754f20bcb46a751e4d3dbc2475d604 Mon Sep 17 00:00:00 2001 From: An Orbit <68935009+orbit-loona@users.noreply.github.com> Date: Tue, 13 Feb 2024 14:56:28 -0500 Subject: [PATCH] fix tsunami velocity --- mods/a_mod_by_alice.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/mods/a_mod_by_alice.js b/mods/a_mod_by_alice.js index 804e1714..873f89a3 100644 --- a/mods/a_mod_by_alice.js +++ b/mods/a_mod_by_alice.js @@ -2136,9 +2136,9 @@ try { }; }; - function capitalizeFirstLetter(string,locale=null) { - return string[0][locale ? "toLocaleUpperCase" : "toUpperCase"](locale) + string.slice(1) - }; + function capitalizeFirstLetter(string,locale=null) { + return string[0][locale ? "toLocaleUpperCase" : "toUpperCase"](locale) + string.slice(1) + }; //COLOR MANIPULATION TOOLS ## @@ -36321,7 +36321,7 @@ Make sure to save your command in a file if you want to add this preset again.` newPixel.vx ??= 0; newPixel.vy ??= 0; newPixel.vx += (pixel.direction * 5) - newPixel.vy += 3; + newPixel.vy -= 3; }; }; pixel.fromX += pixel.direction @@ -36406,7 +36406,7 @@ Make sure to save your command in a file if you want to add this preset again.` newPixel.vx ??= 0; newPixel.vy ??= 0; newPixel.vx += (pixel.direction * 13) - newPixel.vy += 6; + newPixel.vy -= 6; }; }; pixel.fromX += pixel.direction @@ -36503,7 +36503,7 @@ Make sure to save your command in a file if you want to add this preset again.` newPixel.vx ??= 0; newPixel.vy ??= 0; newPixel.vx += (pixel.direction * 6) - newPixel.vy += 3; + newPixel.vy -= 3; }; }; pixel.fromX += pixel.direction @@ -36598,7 +36598,7 @@ Make sure to save your command in a file if you want to add this preset again.` newPixel.vx ??= 0; newPixel.vy ??= 0; newPixel.vx += (pixel.direction * 8) - newPixel.vy += 5; + newPixel.vy -= 5; }; }; pixel.fromX += pixel.direction