Skip to content

Commit

Permalink
Fix drumm crash.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsitton committed Sep 17, 2015
1 parent 940990b commit 833e530
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fofix/game/guitarscene/instruments/Drum.py
Expand Up @@ -57,8 +57,8 @@
# to enable it, only here and Player.drums should need changing.

class Drum(Instrument):
def __init__(self, engine, playerObj, song, player = 0):
super(Drum, self).__init__(engine, playerObj, player, song)
def __init__(self, engine, playerObj, scene, player = 0):
super(Drum, self).__init__(engine, playerObj, scene, player=player)

self.isDrum = True
self.isBassGuitar = False
Expand Down

0 comments on commit 833e530

Please sign in to comment.