diff --git a/src/entities/Player.py b/src/entities/Player.py index ed6f38a..3f33f5b 100644 --- a/src/entities/Player.py +++ b/src/entities/Player.py @@ -7,7 +7,7 @@ import pygame class Player(Entity): def __init__(self, spawnpoint, size): - super().__init__("player.jpg", size, spawnpoint) + super().__init__("player.jpg", size, (spawnpoint[0] * size, spawnpoint[1] * size)) # Where the player is facing, 0 - north, 1 self.rotation = Rotations.NORTH