bug with going down

This commit is contained in:
2024-07-14 21:15:33 -04:00
parent 7db34919ea
commit 5eda5f0ce7
4 changed files with 161 additions and 232 deletions

View File

@@ -28,7 +28,8 @@ export type InteractablesValues = typeof(Enums.InteractType.LightSwitch) |
typeof(Enums.InteractType.Light) |
typeof(Enums.InteractType.LightSource)
export type ElevatorValues = typeof(Enums.Elevator.Otis1960)
export type ElevatorValues = typeof(Enums.Elevator.Otis1960) |
typeof(Enums.Elevator.Haughton)
Enums.Button = {
Car = "CarButton" :: "CarButton",
@@ -50,7 +51,8 @@ Enums.SpecialButton = {
}
Enums.Elevator = {
Otis1960 = "Otis1960" :: "Otis1960"
Otis1960 = "Otis1960" :: "Otis1960",
Haughton = "Haughton" :: "Haughton"
}
Enums.InteractType = {