Removes ++ and -- in conditionals (#71925)

This commit is contained in:
Time-Green
2022-12-12 11:02:57 -08:00
committed by GitHub
parent 965e1f3d59
commit ddf453a170
15 changed files with 34 additions and 17 deletions
+2 -1
View File
@@ -250,7 +250,8 @@
stop_playing(FALSE)
return
var/list/chord = compiled_chords[current_chord]
if(++elapsed_delay < delay_by)
elapsed_delay++
if(elapsed_delay < delay_by)
return
play_chord(chord)
elapsed_delay = 0