Skip to content

Commit

Permalink
Fix black tails bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Sep 17, 2015
1 parent b3b8b72 commit 0693e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fofix/game/guitarscene/instruments/Instrument.py
Expand Up @@ -2035,7 +2035,7 @@ def renderTails(self, visibility, song, pos, killswitch):
if self.notedisappear == 0:#Notes keep on going when missed
color = (.6, .6, .6, .5 * visibility * f)
elif self.notedisappear == 1:#Notes disappear when missed
color = (0.0, 0.0, 0.0, 0.0)
color = (.6, .6, .6, .5 * visibility * f)
if self.notedisappear == 2:#turn red when missed
color = (1, 0, 0, 1)

Expand Down

0 comments on commit 0693e30

Please sign in to comment.