From 0124a76d42c1984e521cf6080740124131470852 Mon Sep 17 00:00:00 2001 From: Sakse Dalum Date: Fri, 10 Aug 2012 14:43:44 +0200 Subject: [PATCH] ... And no longer redundantly prints. --- robotgame/player.py | 1 - 1 file changed, 1 deletion(-) diff --git a/robotgame/player.py b/robotgame/player.py index 32bc54d..07a8687 100644 --- a/robotgame/player.py +++ b/robotgame/player.py @@ -199,7 +199,6 @@ class Player(worldobject.WorldObject): worldobject.WorldObject.update(self, e, t, dt) def draw(self, window): - print(self.anim_root + '_' + self.anim, int(self.frame)) self.img = self.imgs[self.anim_root + '_' + self.anim][int(self.frame)] self.img.set_alpha(128) window.blit(self.img, (self.x - 32 - self.level.camera_x,