1
0

Using cMonster::Tick instead of super::cMonster::Tick

This commit is contained in:
STRWarrior 2013-11-10 15:51:32 +01:00
parent 38f6fff3fb
commit 0980567912

View File

@ -87,7 +87,7 @@ void cWolf::Tick(float a_Dt, cChunk & a_Chunk)
{ {
if (!IsAngry()) if (!IsAngry())
{ {
super::cMonster::Tick(a_Dt, a_Chunk); cMonster::Tick(a_Dt, a_Chunk);
} else { } else {
super::Tick(a_Dt, a_Chunk); super::Tick(a_Dt, a_Chunk);
} }