removed some unnecesary code #39

Merged
davidpanic merged 1 commits from dev into dev 2016-03-26 17:08:34 -04:00
davidpanic commented 2016-03-26 16:59:26 -04:00 (Migrated from github.com)

The below if statement is always true and the value of timeout_on isn't used before a return statement.
timeout_on = False
if timeout_on == False:

The below if statement is always true and the value of timeout_on isn't used before a return statement. timeout_on = False if timeout_on == False:
Dico200 commented 2016-03-26 20:13:01 -04:00 (Migrated from github.com)

there's a bit more wrong with that code
60 => timeout_on <= -2
lol
Well there's no such thing in toolbox right now :)

there's a bit more wrong with that code `60 => timeout_on <= -2` lol Well there's no such thing in toolbox right now :)
jomo commented 2016-03-26 20:15:23 -04:00 (Migrated from github.com)

I assume it should be:

-2 <= timeout_on <= 60
I assume it should be: ``` Python -2 <= timeout_on <= 60 ```
Dico200 commented 2016-03-26 20:15:27 -04:00 (Migrated from github.com)

Looks like the indentation of lines 39-41 is also wrong

Looks like the indentation of lines 39-41 is also wrong
This repo is archived. You cannot comment on pull requests.
No Reviewers
1 Participants
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Redstoner/redstoner-utils#39