fix(game/abstractmobs): use right var for pp

This commit is contained in:
Kazhnuz 2020-07-19 16:06:35 +02:00
parent 99ce270a48
commit 977d4bac16

View file

@ -34,7 +34,7 @@ end
function AbstractMobParent:initLife()
self.hp = self.stats.hpmax
self.mp = self.stats.mpmax
self.pp = self.stats.ppmax
self.status = 0
end