Skip to content

Commit

Permalink
prints begone
Browse files Browse the repository at this point in the history
  • Loading branch information
will-a committed May 23, 2018
1 parent 183cdb4 commit 5e1196c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions players/Reynaldo.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def __init__(self, x, y, handler):
self.start_direction = 0

def attack(self, screen):
print("BOOM")
if self.ranged_cooldown.isDone():
self.ranged_active = True

Expand All @@ -61,7 +60,6 @@ def update(self, screen):
if self.ranged_count == 0:
self.start_tick = self.handler.getTick()
self.ranged_count += 1
print(self.handler.getTick() - self.start_tick)
if (self.handler.getTick() - self.start_tick) % 5 == 0:
self.handler.getAttackList().add(Attack(self, self.damage, self.handler))
if (self.handler.getTick() - self.start_tick) == 10:
Expand Down

0 comments on commit 5e1196c

Please sign in to comment.