mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 10:37:06 +00:00
[10807] Typo fix and memory layout optimization.
This commit is contained in:
parent
fc35cf0d3b
commit
2277b24207
3 changed files with 3 additions and 3 deletions
|
|
@ -37,8 +37,8 @@ typedef std::map<uint32,time_t> AchievementCriteriaFailTim
|
|||
|
||||
struct CriteriaProgress
|
||||
{
|
||||
uint32 counter;
|
||||
time_t date;
|
||||
uint32 counter;
|
||||
bool changed;
|
||||
bool timedCriteriaFailed;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8151,7 +8151,7 @@ void Spell::EffectBind(SpellEffectIndex eff_idx)
|
|||
loc.mapid = st->target_mapId;
|
||||
loc.coord_x = st->target_X;
|
||||
loc.coord_y = st->target_Y;
|
||||
loc.coord_z = st->target_Y;
|
||||
loc.coord_z = st->target_Z;
|
||||
loc.orientation = st->target_Orientation;
|
||||
area_id = sTerrainMgr.GetAreaId(loc.mapid, loc.coord_x, loc.coord_y, loc.coord_z);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "10806"
|
||||
#define REVISION_NR "10807"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue