From e788166d640b385a0d64ae9489daca9546fa7630 Mon Sep 17 00:00:00 2001 From: Osyris Date: Mon, 16 Sep 2024 18:43:16 -0400 Subject: [PATCH] Revert "Refine Humanoid.Seated (#1306)" This reverts commit 32360a52524f51ca6739aae3d6d75b93845156b8. --- include/customDefinitions.d.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/customDefinitions.d.ts b/include/customDefinitions.d.ts index 809d9fb2c..a145c45cb 100644 --- a/include/customDefinitions.d.ts +++ b/include/customDefinitions.d.ts @@ -511,11 +511,7 @@ interface HttpService extends Instance { interface Humanoid extends Instance { readonly AnimationPlayed: RBXScriptSignal<(animationTrack: AnimationTrack) => void>; - readonly Seated: RBXScriptSignal< - ( - ...args: [active: true, currentSeatPart: Seat | VehicleSeat] | [active: false, currentSeatPart: undefined] - ) => void - >; + readonly Seated: RBXScriptSignal<(active: boolean, currentSeatPart: Seat | VehicleSeat | undefined) => void>; readonly Touched: RBXScriptSignal<(touchingPart: BasePart, humanoidPart: BasePart) => void>; GetAppliedDescription(this: Humanoid): HumanoidDescription; GetPlayingAnimationTracks(this: Humanoid): Array;