"You open the valve." "You close the valve."

This commit is contained in:
aidan 2026-05-22 07:03:00 -05:00
parent 8903ed619a
commit 430d7e0467

View file

@ -899,7 +899,7 @@ class EW2Listeners : InteractionListener {
setVarbit(player, EW2ValveWestVarbit, 1, true)
runTask(player, 3) {
syncTank(player)
sendDialogue(player, "you open the valve")
sendDialogue(player, "You open the valve.")
playAudio(player, Sounds.EW2_WATER_VALVE_3185)
}
// if open, close the valve
@ -907,7 +907,7 @@ class EW2Listeners : InteractionListener {
setVarbit(player, EW2ValveWestVarbit, 0, true)
runTask(player, 3) {
syncTank(player)
sendDialogue(player, "you close the valve")
sendDialogue(player, "You close the valve.")
playAudio(player, Sounds.EW2_WATER_VALVE_3185)
}
}