Skip to content

Commit b9a2075

Browse files
authored
Bug Fix
Button timer was broken
1 parent e369464 commit b9a2075

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

HumanlyRandom/HumanlyRandom.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void draw() {
3636

3737
// creates 60 second countdown once button is pressed
3838
timeSinceLastSMS = (millis() - sentSMSTime)/1000;
39-
if (timeSinceLastSMS == 60) {
39+
if (timeSinceLastSMS >= 60) {
4040
sendSMSButton.enable();
4141
}
4242
}

0 commit comments

Comments
 (0)