Skip to content

Commit

Permalink
Using cMonster::Tick instead of super::cMonster::Tick
Browse files Browse the repository at this point in the history
  • Loading branch information
NiLSPACE committed Nov 10, 2013
1 parent 38f6fff commit 0980567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Mobs/Wolf.cpp
Expand Up @@ -87,7 +87,7 @@ void cWolf::Tick(float a_Dt, cChunk & a_Chunk)
{
if (!IsAngry())
{
super::cMonster::Tick(a_Dt, a_Chunk);
cMonster::Tick(a_Dt, a_Chunk);
} else {
super::Tick(a_Dt, a_Chunk);
}
Expand Down

0 comments on commit 0980567

Please sign in to comment.