Removed use of initializer lists. so less pretty

This commit is contained in:
Arthur Ice
2014-11-25 21:45:41 -08:00
parent 5115a29bb7
commit 65ad5b5c99
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -2944,7 +2944,7 @@ void Mob::TriggerDefensiveProcs(const ItemInst* weapon, Mob *on, uint16 hand, in
}
void Mob::SetDeltas(float dx, float dy, float dz, float dh) {
m_Delta = {dx,dy,dz,dh};
m_Delta = xyz_heading(dx,dy,dz,dh);
}
void Mob::SetEntityVariable(const char *id, const char *m_var)