fix: fix player initialization

This commit is contained in:
Kazhnuz 2022-05-26 11:22:17 +02:00
parent aa2b14a509
commit 7993e6b6fe

View file

@ -16,7 +16,7 @@ Player:implement(Identity)
function Player:new(world, x, y, z, id) function Player:new(world, x, y, z, id)
self.defaultDir = 1 self.defaultDir = 1
Player.super.new(self, world, x, y, 16, 12, 24, "fighter") Player.super.new(self, world, x, y, "player")
self:updateCurrentCharset() self:updateCurrentCharset()
self:initScore() self:initScore()
self:initTeam() self:initTeam()