Merge pull request #1169 from JustAGenericUsername/main

🎛️🤑
This commit is contained in:
slweeb 2025-07-15 13:17:17 -04:00 committed by GitHub
commit 0897c39fe2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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}
},