Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logic spaghetti #11

Open
loganlearner opened this issue Oct 31, 2021 · 0 comments
Open

Logic spaghetti #11

loganlearner opened this issue Oct 31, 2021 · 0 comments

Comments

@loganlearner
Copy link
Contributor

loganlearner commented Oct 31, 2021

local prevState = self.chuteIsUnstable
if state == nil then
state = not prevState
elseif state == prevState then return end
self.chuteIsUnstable = state

Couldn't this section be simplified to:

self.chuteIsUnstable = state == nil and not self.chuteIsUnstable or state
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant