Skip to content

Commit 2d60e0b

Browse files
committed
fix: Format code
1 parent 6d071f6 commit 2d60e0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/playerutils/src/Shared/RxPlayerUtils.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ local Brio = require("Brio")
1212
local Maid = require("Maid")
1313
local Observable = require("Observable")
1414
local Rx = require("Rx")
15-
local RxInstanceUtils = require("RxInstanceUtils")
1615
local RxBrioUtils = require("RxBrioUtils")
1716
local RxCharacterUtils = require("RxCharacterUtils")
17+
local RxInstanceUtils = require("RxInstanceUtils")
1818

1919
local RxPlayerUtils = {}
2020

@@ -61,7 +61,7 @@ function RxPlayerUtils.observeCharactersBrio(): Observable.Observable<Brio.Brio<
6161
return RxPlayerUtils.observePlayersBrio():Pipe({
6262
RxBrioUtils.flatMapBrio(function(player)
6363
return RxCharacterUtils.observeLastCharacterBrio(player)
64-
end)
64+
end),
6565
})
6666
end
6767

@@ -72,7 +72,7 @@ function RxPlayerUtils.observeHumanoidsBrio(): Observable.Observable<Brio.Brio<H
7272
return RxPlayerUtils.observePlayersBrio():Pipe({
7373
RxBrioUtils.flatMapBrio(function(player)
7474
return RxCharacterUtils.observeLastHumanoidBrio(player)
75-
end)
75+
end),
7676
})
7777
end
7878

0 commit comments

Comments
 (0)