diff options
Diffstat (limited to '')
-rw-r--r-- | source/Mobs/Zombie.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Mobs/Zombie.cpp b/source/Mobs/Zombie.cpp index bf630929a..8038c51f6 100644 --- a/source/Mobs/Zombie.cpp +++ b/source/Mobs/Zombie.cpp @@ -16,9 +16,9 @@ cZombie::cZombie(void) : -void cZombie::Tick(float a_Dt) +void cZombie::Tick(float a_Dt, MTRand & a_TickRandom) { - super::Tick(a_Dt); + super::Tick(a_Dt, a_TickRandom); // TODO Same as in cSkeleton :D if ((GetWorld()->GetTimeOfDay() < (12000 + 1000)) && (GetMetaData() != BURNING)) |