Skip to content

Commit 6003d88

Browse files
committed
2026-06-28T0726Z
1 parent c39c78b commit 6003d88

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Source/routines/_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def save_app_settings(self) -> str:
273273
'''
274274
path = self.get_versioned_path('AppSettings.xml')
275275
app_base_url = self.get_app_base_url()
276-
with open(path, 'w', encoding='utf-8') as f:
276+
with open(path, 'w', encoding='utf-8', newline='\r\n') as f:
277277
f.write(textwrap.dedent(f'''\
278278
<?xml version="1.0" encoding="UTF-8"?>
279279
<Settings>

Source/routines/rcc/startup_scripts.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
local HttpService = game:GetService("HttpService")
1111
1212
spawn(function()
13-
local Url = BaseUrl .. "/rfd/data-transfer"
13+
local Url = "rfd/data-transfer"
1414
local Results = {}
1515
local CallsJson = {}
1616
1717
local c = 0
1818
while true do
1919
c = c + 1
2020
local ResultsJson = HttpService:JSONEncode(Results)
21-
CallsJson = HttpRbxApiService:PostAsyncFullUrl(Url, ResultsJson, Enum.ThrottlingPriority.Extreme)
21+
CallsJson = HttpRbxApiService:PostAsync(Url, ResultsJson, Enum.ThrottlingPriority.Extreme)
2222
Results = {}
2323
for guid, data in next, HttpService:JSONDecode(CallsJson) do
2424
local path, args = data.path, data.args
@@ -29,8 +29,8 @@
2929
end)
3030
3131
game.Players.PlayerAdded:connect(function(Player)
32-
local Url = BaseUrl .. "/rfd/is-player-allowed?userId=" .. Player.UserId
33-
if HttpRbxApiService:GetAsyncFullUrl(Url) == 'true' then
32+
local Url = "rfd/is-player-allowed?userId=" .. Player.UserId
33+
if HttpRbxApiService:GetAsync(Url) == 'true' then
3434
return
3535
end
3636
Player:Kick('Player is not allowed.')

0 commit comments

Comments
 (0)