Remove unused variable

This commit is contained in:
2024-09-14 14:51:04 -04:00
parent cc9fae99fd
commit d6f8bc448f

View File

@@ -47,10 +47,9 @@ type Constructor_Return_Props = {
ewarnStudio: <T...>(T...) -> (),
Elevator: {
TravelingDirection: Enums.ElevatorCallDirectionValues,
BoxModel: BasePart,
AlignPosition: AlignPosition,
Configuration: ElevatorTypes.ElevatorConfigurationTable
BoxModel: BasePart,
AlignPosition: AlignPosition,
Configuration: ElevatorTypes.ElevatorConfigurationTable
},
Attributes: Attributes,
Events: Events,
@@ -149,10 +148,10 @@ function Elevator.constructor(ElevatorBoxModel, ElevatorConfigurationTable, Floo
local Leveling3Phase = Instance.new("BindableEvent") :: BindableEvent
local Attributes = {
PreviousFloor = Instance.new("IntValue") :: IntValue,
CurrentFloor = Instance.new("IntValue") :: IntValue,
PreviousFloor = Instance.new("IntValue") :: IntValue,
CurrentFloor = Instance.new("IntValue") :: IntValue,
NextFloor = Instance.new("IntValue") :: IntValue,
Goal = Instance.new("IntValue") :: IntValue,
Goal = Instance.new("IntValue") :: IntValue,
TravelingUpwards = Instance.new("BoolValue") :: BoolValue,
Stopped = Instance.new("BoolValue") :: BoolValue
}
@@ -171,10 +170,9 @@ function Elevator.constructor(ElevatorBoxModel, ElevatorConfigurationTable, Floo
ewarnStudio = ewarnStudio,
Elevator = {
TravelingDirection = Enums.ElevatorCallDirection.Up,
BoxModel = ElevatorBoxModel,
AlignPosition = BoxAlignPosition,
Configuration = ElevatorConfigurationTable,
BoxModel = ElevatorBoxModel,
AlignPosition = BoxAlignPosition,
Configuration = ElevatorConfigurationTable,
},
Events = {