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