Skip to content

Commit

Permalink
Fix playtest sync
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Dec 27, 2023
1 parent 3f56e6e commit 2d2e9b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Binary file modified Lync/Plugin.rbxm
Binary file not shown.
10 changes: 6 additions & 4 deletions Lync/RobloxPluginSource/Plugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1082,10 +1082,12 @@ end

if workspace:GetAttribute("__lyncbuildfile") and not IS_PLAYTEST_SERVER or syncDuringTest and IS_PLAYTEST_SERVER and workspace:GetAttribute("__lyncactive") then
if syncDuringTest and IS_PLAYTEST_SERVER then warn("[Lync] - Playtest Sync is active.") end
portTextBox.Text = ""
portTextBox.PlaceholderText = workspace:GetAttribute("__lyncbuildfile")
portTextBox.TextEditable = false
portTextBox.Active = false
if workspace:GetAttribute("__lyncbuildfile") then
portTextBox.Text = ""
portTextBox.PlaceholderText = workspace:GetAttribute("__lyncbuildfile")
portTextBox.TextEditable = false
portTextBox.Active = false
end
setConnected(true)
end

Expand Down

0 comments on commit 2d2e9b5

Please sign in to comment.