diff --git a/src/game/Vehicle.cpp b/src/game/Vehicle.cpp index 3de27b2b9..b92e5428b 100644 --- a/src/game/Vehicle.cpp +++ b/src/game/Vehicle.cpp @@ -81,9 +81,8 @@ bool Vehicle::Create(uint32 guidlow, Map *map, uint32 Entry, uint32 vehicleId, u CreatureInfo const *ci = GetCreatureInfo(); setFaction(team == ALLIANCE ? ci->faction_A : ci->faction_H); - SetMaxHealth(ci->maxhealth); + SelectLevel(ci); - SetHealth(GetMaxHealth()); return true; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 76a2df8c5..bf58c5d48 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9427" + #define REVISION_NR "9428" #endif // __REVISION_NR_H__