From 5822b9fafc628f2f05abde268a4304088b380a0b Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Mon, 14 Jul 2025 20:42:36 -0400 Subject: [PATCH] piston fixy --- mods/nousersthings.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index 51beeb62..290f48ba 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -3113,7 +3113,8 @@ elements.piston_ray_emitter = { category: "machines", movable: false, onSelect: async function(){ - var ans1 = await _nousersthingsprompt("Would you like this piston to pull or push?", "pull").toLowerCase(); + var ans1 = await _nousersthingsprompt("Would you like this piston to pull or push?", "pull") + ans1 = ans1.toLowerCase() if (ans1 == "pull"){pullOrPush = 1} else if (ans1 == "push"){pullOrPush = 2} },