diff --git a/main.py b/main.py
index 8dbc0ea..5de43d2 100644
--- a/main.py
+++ b/main.py
@@ -10,7 +10,7 @@ class Game:
     def __init__(self) -> None:
         self.running = True
         self.is_pause = False
-        self.pl = Player(self)
+        self.pl = Player()
         self.out = Out(self.pl)
 
         kb.add_hotkey(QUIT_BUTTON, self.stop_game)