You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The conditions like
if a == nil and b == nil then
c = 'something'
end
if a == nil and b then
c = 'something else'
end
going in a row look a little strange.
This patch groups similar conditions from the `Server:initialize`
function into the following construction:
if a == nil then
if b == nil then
c = 'something'
else
c = 'something else'
end
end
0 commit comments