Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Group some if
conditions from
Server:initialize`
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
- Loading branch information